|
| 1 | +[MASTER] |
| 2 | + |
| 3 | +jobs = 0 |
| 4 | + |
| 5 | +load-plugins = |
| 6 | + pylint.extensions.bad_builtin, |
| 7 | + pylint.extensions.broad_try_clause, |
| 8 | + pylint.extensions.check_elif, |
| 9 | + pylint.extensions.code_style, |
| 10 | + pylint.extensions.comparison_placement, |
| 11 | + pylint.extensions.confusing_elif, |
| 12 | + pylint.extensions.consider_refactoring_into_while_condition, |
| 13 | + pylint.extensions.consider_ternary_expression, |
| 14 | + pylint.extensions.dict_init_mutate, |
| 15 | + pylint.extensions.docparams, |
| 16 | + pylint.extensions.docstyle, |
| 17 | + pylint.extensions.dunder, |
| 18 | + pylint.extensions.empty_comment, |
| 19 | + pylint.extensions.eq_without_hash, |
| 20 | + pylint.extensions.for_any_all, |
| 21 | + pylint.extensions.magic_value, |
| 22 | + pylint.extensions.mccabe, |
| 23 | + pylint.extensions.no_self_use, |
| 24 | + pylint.extensions.overlapping_exceptions, |
| 25 | + pylint.extensions.private_import, |
| 26 | + pylint.extensions.redefined_variable_type, |
| 27 | + pylint.extensions.redefined_loop_name, |
| 28 | + pylint.extensions.set_membership, |
| 29 | + pylint.extensions.typing, |
| 30 | + pylint.extensions.while_used, |
| 31 | + |
| 32 | + |
| 33 | +[MESSAGES CONTROL] |
| 34 | + |
| 35 | +disable = |
| 36 | + |
| 37 | +enable = |
| 38 | + use-symbolic-message-instead, |
| 39 | + useless-suppression, |
| 40 | + |
| 41 | + |
| 42 | +[SPELLING] |
| 43 | + |
| 44 | +spelling-dict = en_US |
| 45 | + |
| 46 | +spelling-private-dict-file = spelling-dict.txt |
0 commit comments