-
Notifications
You must be signed in to change notification settings - Fork 16
/
pylintrc
36 lines (35 loc) · 913 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
[MASTER]
ignore=typing
persistent=no
[MESSAGES CONTROL]
disable=broad-exception-caught,
c-extension-no-member,
consider-using-f-string,
disallowed-name,
duplicate-code,
fixme,
import-error,
import-outside-toplevel,
invalid-name,
line-too-long,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
no-else-return,
no-member,
not-callable,
parse-error,
protected-access,
raise-missing-from,
redefined-builtin,
redefined-outer-name,
too-few-public-methods,
too-many-arguments,
too-many-lines,
too-many-positional-arguments,
too-many-public-methods,
unidiomatic-typecheck,
unused-argument,
use-a-generator,
wrong-import-order,
wrong-import-position,