forked from app-sre/qontract-reconcile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
51 lines (50 loc) · 1.63 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
51
[MAIN]
extension-pkg-allow-list=pydantic
[MESSAGES CONTROL]
disable = attribute-defined-outside-init,
duplicate-code,
fixme,
function-redefined,
global-statement,
line-too-long,
import-outside-toplevel,
inconsistent-return-statements,
invalid-name,
logging-format-interpolation,
logging-fstring-interpolation,
logging-not-lazy,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
multiple-statements,
no-member,
protected-access,
raise-missing-from,
redefined-argument-from-local,
redefined-builtin,
redefined-outer-name,
simplifiable-if-expression,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-format-args,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-return-statements,
too-many-statements,
# This makes calls to open too cumbersome
unspecified-encoding,
# Not all integrations need all the arguments we pass to
# their run function.
unused-argument,
consider-using-f-string,
# This one matters - Python scoping messes up with our
# global and multi-threading locks
global-variable-not-assigned,
# since v2.16
use-dict-literal,
broad-exception-raised,
broad-exception-caught,
superfluous-parens,