-
Notifications
You must be signed in to change notification settings - Fork 61
/
pylintrc
33 lines (32 loc) · 884 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
[MASTER]
persistent=no
[MESSAGES CONTROL]
disable=assignment-from-no-return,
c-extension-no-member,
consider-using-f-string,
consider-using-in,
fixme,
inconsistent-return-statements,
invalid-name,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
multiple-imports,
no-else-return,
no-member,
raise-missing-from,
redefined-builtin,
redefined-outer-name,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-function-args,
too-many-lines,
too-many-positional-arguments,
too-many-public-methods,
too-many-statements,
undefined-variable,
unidiomatic-typecheck,
unspecified-encoding,
unused-argument,
unused-import,