-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path.pylintrc
86 lines (65 loc) · 1.69 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
83
84
85
86
[MASTER]
jobs=4
persistent=yes
suggestion-mode=yes
unsafe-load-any-extension=no
# Blacklist files or directories (basenames, not paths)
ignore=
# blacklist files or directories by regex (basenames, not paths)
ignore-patterns=
[EXCEPTIONS]
overgeneral-exceptions=builtins.Exception
[BASIC]
bad-names=foo,bar,baz,toto,tutu,tata
good-names=i,j,k,_,log
[LOGGING]
logging-modules=logging,structlog
[MESSAGES CONTROL]
disable=
missing-class-docstring,
missing-module-docstring,
missing-function-docstring,
missing-timeout,
too-many-lines,
too-many-locals,
too-many-branches,
too-many-arguments,
too-many-statements,
too-many-return-statements,
too-many-instance-attributes,
invalid-name,
no-value-for-parameter,
consider-using-f-string,
redefined-outer-name,
global-statement,
unreachable,
use-dict-literal,
fixme,
unspecified-encoding,
broad-exception-caught,
too-few-public-methods,
super-init-not-called,
c-extension-no-member,
redefined-argument-from-local,
global-variable-not-assigned,
used-before-assignment,
protected-access,
[REPORTS]
reports=no
score=no
[FORMAT]
expected-line-ending-format=LF
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
max-line-length=100
[VARIABLES]
callbacks=cb_,_cb
dummy-variables-rgx=_
ignored-argument-names=_.*
[TYPECHECK]
contextmanager-decorators=contextlib.contextmanager
# List of class names for which member attributes should not be checked
ignored-classes=
# List of module names for which member attributes should not be checked
ignored-modules=
# List of members which are set dynamically and missed by pylint inference system
generated-members=ape.reverts