-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.pylintrc
More file actions
33 lines (32 loc) · 828 Bytes
/
.pylintrc
File metadata and controls
33 lines (32 loc) · 828 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
[MASTER]
# Disable the unused-argument warning
disable = unused-argument
ignore-patterns=(.)*_test\.py,test_(.)*\.py
[MESSAGES CONTROL]
disable =
too-few-public-methods,
broad-exception-caught,
missing-function-docstring,
missing-module-docstring,
missing-class-docstring,
wrong-import-order,
ungrouped-imports,
import-outside-toplevel,
line-too-long,
invalid-name,
import-error,
raise-missing-from,
too-many-branches,
too-many-locals,
too-many-boolean-expressions,
too-many-arguments,
too-many-instance-attributes,
too-many-return-statements,
consider-using-from-import,
# temporary
cyclic-import,
no-value-for-parameter,
unexpected-keyword-arg,
inconsistent-return-statements,
duplicate-code,
attribute-defined-outside-init,