-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
82 lines (75 loc) · 1.53 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[MASTER]
# It appears that if ignore-patterns has a trailing comma,
# pytest will not run pylint!
ignore-patterns=temp.*\.py
ignore-paths=^docs/examples/.*$,
^docs/resources/midani/.*$,
^tests/test_settings/.*$,
^tests/debug_settings/.*$,
^tests/test_input/.*$,
^favorites/.*$,
extension-pkg-allow-list=math
[MESSAGES CONTROL]
disable=too-many-instance-attributes,
too-many-ancestors,
too-many-locals,
too-many-branches,
too-many-statements,
too-many-return-statements,
too-few-public-methods,
too-many-public-methods,
too-many-arguments,
too-many-nested-blocks,
missing-function-docstring,
invalid-name,
pointless-string-statement,
duplicate-code,
too-many-lines,
fixme,
consider-using-f-string,
; eval-used,
; undefined-loop-variable,
; no-member,
unspecified-encoding,
no-else-raise,
no-else-return,
# Delete eventually:
missing-class-docstring,
missing-module-docstring,
line-too-long,
# Delete unsubscriptable-object when typing.Union bug is fixed in pylintrc
unsubscriptable-object,
# This fails on isinstance(foo, typing.Sequence)
# See https://github.com/PyCQA/pylint/issues/3507
isinstance-second-argument-not-valid-type,
# Ideally I would disable this just for tests:
protected-access,
[BASIC]
good-names=
x,
y,
f,
i,
j,
m,
n,
r,
er,
mf,
pc,
fc,
no,
ic,
op,
Cb,
Db,
Eb,
Fb,
Gb,
Ab,
Bb,
bII,
bIII,
bV,
bVI,
bVII,