forked from asozialesnetzwerk/an-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
46 lines (40 loc) · 1.13 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
[MASTER]
load-plugins=
#pylint.extensions.empty_comment,
pylint.extensions.typing,
pylint.extensions.comparetozero,
pylint.extensions.for_any_all,
pylint.extensions.bad_builtin,
pylint.extensions.overlapping_exceptions,
pylint.extensions.emptystring,
#pylint.extensions.confusing_elif,
pylint.extensions.redefined_variable_type,
#pylint.extensions.docstyle,
pylint.extensions.docparams,
pylint.extensions.consider_ternary_expression,
#pylint.extensions.code_style,
pylint.extensions.while_used,
pylint.extensions.broad_try_clause,
pylint.extensions.comparison_placement,
#pylint.extensions.mccabe,
pylint.extensions.check_elif,
pylint.extensions.set_membership,
extension-pkg-allow-list=orjson
py-version=3.10
[MESSAGES_CONTROL]
disable=file-ignored,
locally-disabled,
suppressed-message
[BASIC]
include-naming-hint=yes
[FORMAT]
expected-line-ending-format=LF
[IMPORTS]
preferred-modules=xml:defusedxml,json:orjson
[SIMILARITIES]
min-similarity-lines=4
ignore-comments=yes
ignore-docstrings=yes
ignore-imports=yes
[BROAD_TRY_CLAUSE]
max-try-statements=6