-
Notifications
You must be signed in to change notification settings - Fork 25
/
pylintrc
40 lines (37 loc) · 942 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[SETTINGS]
max-line-length=120
max-args=8
max-locals=15
max-statements=50
max-attributes=15
indent-string=' '
const-naming-style=any
indent-after-paren=2
notes=
disable=R,
no-member,
missing-module-docstring,
missing-class-docstring,
missing-method-docstring,
missing-function-docstring,
invalid-name,
unused-argument,
redefined-builtin,
bare-except,
broad-except,
attribute-defined-outside-init,
relative-beyond-top-level,
import-outside-toplevel,
invalid-str-returned,
unused-variable,
raise-missing-from,
unspecified-encoding,
consider-using-f-string,
consider-using-dict-items,
consider-iterating-dictionary,
unsupported-binary-operation,
broad-exception-raised,
nested-min-max,
unknown-option-value,
missing-timeout
ignore=migrations