-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.pylintrc
More file actions
36 lines (32 loc) · 629 Bytes
/
.pylintrc
File metadata and controls
36 lines (32 loc) · 629 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,
too-few-public-methods,
[REPORTS]
output-format=colorized
[FORMAT]
logging-modules=
logging,
structlog,
[TYPECHECK]
# pygments: sys.modules hacks causing false positives - https://github.com/PyCQA/pylint/issues/491
ignored-modules=
pygments.lexers,
pygments.formatters,