-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pylintrc
50 lines (42 loc) · 1.49 KB
/
.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[MAIN]
ignore-paths=__pycache__,
venv,
.mypy_cache,
fail-on=I
check-quote-consistency=yes
jobs=0
recursive=yes
load-plugins=pylint.extensions.broad_try_clause,
pylint.extensions.code_style,
pylint.extensions.comparison_placement,
pylint.extensions.confusing_elif,
pylint.extensions.for_any_all,
pylint.extensions.consider_refactoring_into_while_condition,
pylint.extensions.consider_ternary_expression,
pylint.extensions.bad_builtin,
pylint.extensions.mccabe,
pylint.extensions.dict_init_mutate,
pylint.extensions.docstyle,
pylint.extensions.dunder,
pylint.extensions.check_elif,
pylint.extensions.empty_comment,
pylint.extensions.eq_without_hash,
pylint.extensions.private_import,
pylint.extensions.redefined_variable_type,
pylint.extensions.no_self_use,
pylint.extensions.overlapping_exceptions,
pylint.extensions.docparams,
pylint.extensions.redefined_loop_name,
pylint.extensions.set_membership,
pylint.extensions.typing,
pylint.extensions.while_used,
[REPORTS]
score=no
[BASIC]
module-naming-style=any
[MESSAGES CONTROL]
disable=missing-module-docstring,
too-few-public-methods,
docstring-first-line-empty,
consider-using-assignment-expr,
while-used,