-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpylintrc.toml
More file actions
29 lines (28 loc) · 797 Bytes
/
pylintrc.toml
File metadata and controls
29 lines (28 loc) · 797 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
[tool.pylint.'messages control']
disable = [
# Defaults
'raw-checker-failed',
'bad-inline-option',
'locally-disabled',
'file-ignored',
'suppressed-message',
'useless-suppression',
'deprecated-pragma',
'use-symbolic-message-instead',
'use-implicit-booleaness-not-comparison-to-string',
'use-implicit-booleaness-not-comparison-to-zero',
'invalid-name',
'missing-class-docstring',
'missing-function-docstring',
'missing-module-docstring',
'too-few-public-methods',
'too-many-arguments',
'too-many-boolean-expressions',
'too-many-instance-attributes',
'too-many-lines',
'too-many-locals',
'too-many-positional-arguments',
'too-many-public-methods',
'too-many-return-statements',
'unused-argument',
]