-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy path.pylintrc
More file actions
34 lines (25 loc) · 791 Bytes
/
.pylintrc
File metadata and controls
34 lines (25 loc) · 791 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
[MASTER]
# --go-faster, use multiple processes to speed up Pylint
jobs=4
[MESSAGES CONTROL]
# Errors and warnings with some filtered:
# W0012(bad-option-value)
# W0212(protected-access)
# W0221(arguments-differ)
# W0223(abstract-method)
# W0231(super-init-not-called)
# W0511(fixme)
# W0603(global-statement)
# W0611(unused-import)
# W0613(unused-argument)
# W0621(redefined-outer-name)
# W0622(redefined-builtin)
# W0631(undefined-loop-variable)
# W0703(broad-except)
# W1514(unspecified-encoding)
disable=C, F, I, R, W0012, W0212, W0221, W0223, W0231, W0511, W0603, W0611, W0613, W0621, W0622, W0631, W0703, W1514
[REPORTS]
# Set the output format. Available formats are text, parseable, colorized, msvs
output-format=parseable
# Just the errors please, no full report
reports=no