|
| 1 | +# |
| 2 | + |
| 3 | +# TODO emptystring and comparetozero have been removed in pylint 3.0 |
| 4 | +# TODO https://pylint.pycqa.org/en/latest/whatsnew/3/3.0/index.html#changes-requiring-user-actions |
| 5 | + |
| 6 | +[MASTER] |
| 7 | + |
| 8 | +jobs = 0 |
| 9 | + |
| 10 | +load-plugins = |
| 11 | + pylint.extensions.bad_builtin, |
| 12 | + pylint.extensions.broad_try_clause, |
| 13 | + pylint.extensions.check_elif, |
| 14 | + pylint.extensions.code_style, |
| 15 | + pylint.extensions.comparison_placement, |
| 16 | + pylint.extensions.confusing_elif, |
| 17 | + pylint.extensions.consider_refactoring_into_while_condition, |
| 18 | + pylint.extensions.consider_ternary_expression, |
| 19 | + pylint.extensions.dict_init_mutate, |
| 20 | + pylint.extensions.docparams, |
| 21 | + pylint.extensions.docstyle, |
| 22 | + pylint.extensions.dunder, |
| 23 | + pylint.extensions.empty_comment, |
| 24 | + pylint.extensions.eq_without_hash, |
| 25 | + pylint.extensions.for_any_all, |
| 26 | + pylint.extensions.magic_value, |
| 27 | + pylint.extensions.mccabe, |
| 28 | + pylint.extensions.no_self_use, |
| 29 | + pylint.extensions.overlapping_exceptions, |
| 30 | + pylint.extensions.private_import, |
| 31 | + pylint.extensions.redefined_variable_type, |
| 32 | + pylint.extensions.redefined_loop_name, |
| 33 | + pylint.extensions.set_membership, |
| 34 | + pylint.extensions.typing, |
| 35 | + pylint.extensions.while_used, |
| 36 | + |
| 37 | + |
| 38 | +[MESSAGES CONTROL] |
| 39 | + |
| 40 | +disable = |
| 41 | + |
| 42 | +enable = |
| 43 | + use-symbolic-message-instead, |
| 44 | + useless-suppression, |
| 45 | + |
| 46 | + |
| 47 | +[SPELLING] |
| 48 | + |
| 49 | +spelling-dict = en |
| 50 | +spelling-private-dict-file = spelling-dict.txt |
| 51 | + |
| 52 | + |
| 53 | +# EOF |
0 commit comments