-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.pylintrc
More file actions
35 lines (27 loc) · 839 Bytes
/
.pylintrc
File metadata and controls
35 lines (27 loc) · 839 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
[MASTER]
persistent=no
[MESSAGES]
# These should be fixed
# R0401: cyclic-import
# Enforce minimal documentation. Probably nice to fix.
# C0114: missing-module-docstring
# C0115: missing-class-docstring
# C0116: missing-function-docstring
# Formatting nitpicks
# C0301: line-too-long
# C0302: too-many-lines
# These feel a bit pedantic
# R0801: duplicate-code
# R0902: too-many-instance-attributes
# R0903: too-few-public-methods
# R0904: too-many-public-methods
# R0913: too-many-arguments
# R0914: too-many-locals
# R0915: too-many-statements
# C0103: invalid-name
# C0104: disallowed-name
disable=C0103,C0104,C0301,C0302,C0114,C0115,C0116,C0301,R0801,R0902,R0903,R0904,R0913,R0914,R0915,R0401
[MISCELLANEOUS]
# List of note tags that will trigger W0511.
# default: FIXME,XXX,TODO
notes=DONTCHECKIN