-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
65 lines (60 loc) · 1.59 KB
/
setup.cfg
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[flake8]
extend-exclude = build,venv,dist,.pytype
max-line-length = 80
max-complexity = 5
ignore = E501,E704,W503
select = B,B9,C,D,E,F,N8,RST,SCR,SIM,W,INP
require-plugins =
flake8-builtins
flake8-bugbear
flake8-comprehensions
flake8-docstrings
flake8-no-pep420
flake8-scream
flake8-simplify
pep8-naming
flake8-return
flake8-no-implicit-concat
# flake8-slots
# flake8-function-order
# flake8-rst-docstrings
[pylint.MASTER]
ignore=.git,build,venv,.pytype
load-plugins=
pylint.extensions.broad_try_clause,
pylint.extensions.check_elif,
pylint.extensions.code_style,
pylint.extensions.comparison_placement,
pylint.extensions.confusing_elif,
pylint.extensions.consider_ternary_expression,
pylint.extensions.docparams,
pylint.extensions.docstyle,
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,
pylint.extensions.while_used,
recursive=yes
py-version=3.10
[pylint.REPORTS]
output-format=colorized
[pylint.MESSAGES CONTROL]
enable=all
disable=
locally-disabled,
suppressed-message,
docstring-first-line-empty,
multiple-statements,
too-many-public-methods,
too-few-public-methods,
too-many-arguments,
[pylint.FORMAT]
expected-line-ending-format=LF
[pylint.BASIC]
include-naming-hint=yes