-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pylintrc
24 lines (21 loc) · 960 Bytes
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[MASTER]
load-plugins=pylint.extensions.check_elif,
pylint.extensions.comparison_placement,
pylint.extensions.confusing_elif,
pylint.extensions.consider_ternary_expression,
pylint.extensions.emptystring,
pylint.extensions.eq_without_hash,
pylint.extensions.for_any_all,
pylint.extensions.mccabe,
pylint.extensions.no_self_use,
pylint.extensions.overlapping_exceptions,
pylint.extensions.private_import,
pylint.extensions.redefined_loop_name,
pylint.extensions.redefined_variable_type,
pylint.extensions.set_membership,
pylint.extensions.typing
[MESSAGES CONTROL]
disable=consider-alternative-union-syntax, # requires python>=3.10
deprecated-typing-alias, # requires python>=3.9, e.g. for dict[...]
missing-function-docstring,
missing-module-docstring