-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy path.pylintrc
More file actions
36 lines (32 loc) · 574 Bytes
/
.pylintrc
File metadata and controls
36 lines (32 loc) · 574 Bytes
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]
# jobs=0 means 'use all CPUs'
jobs=0
[MESSAGES CONTROL]
disable =
missing-docstring,
line-too-long,
invalid-name,
no-value-for-parameter,
no-member,
unused-argument,
broad-except,
relative-import,
wrong-import-position,
bare-except,
locally-disabled,
protected-access,
abstract-method,
no-self-use,
fixme,
redefined-builtin,
too-many-arguments,
too-many-locals,
too-few-public-methods,
bad-continuation,
inconsistent-return-statements
[REPORTS]
output-format=colorized
[FORMAT]
logging-modules=
logging,
structlog,