forked from henrikingo/dsi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpylintrc
68 lines (64 loc) · 1.66 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[MESSAGES CONTROL]
disable=locally-disabled,
fixme,
no-name-in-module,
duplicate-code,
import-error,
too-few-public-methods,
# Added when upgrading to python3 + pylint 2.4.4. Feel free to remove later
useless-object-inheritance,
unnecessary-pass,
consider-using-set-comprehension,
no-else-return,
import-outside-toplevel,
useless-return,
no-else-raise,
using-constant-test,
subprocess-popen-preexec-fn,
# Added when upgrading to python 3.11+ pylint 3.1.0
consider-using-f-string,
consider-using-from-import,
unspecified-encoding,
consider-using-with,
superfluous-parens,
unnecessary-list-index-lookup,
missing-timeout,
use-maxsplit-arg,
super-with-arguments,
bad-except-order,
use-list-literal,
useless-option-value,
unused-variable, # FIXME
raise-missing-from,
reimported,
deprecated-class,
wrong-import-position,
use-implicit-booleaness-not-comparison,
broad-exception-raised,
use-yield-from,
use-a-generator,
consider-using-dict-items,
duplicate-string-formatting-argument
[REPORTS]
reports=no
[BASIC]
good-names=runTest,
_,
e,
i,
j,
k,
l,
m,
n,
x,
y,
z,
db,
_db
[FORMAT]
max-line-length=100
msg-template={abspath}:{line}:{column}: [{msg_id}({symbol}), {obj}] {msg}
[TYPECHECK]
ignored-modules = numpy
ignored-classes = numpy