-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpylintrc
More file actions
30 lines (26 loc) · 594 Bytes
/
pylintrc
File metadata and controls
30 lines (26 loc) · 594 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
[MASTER]
reports=no
disable=
invalid-name,
broad-except,
protected-access,
abstract-method,
missing-function-docstring,
duplicate-code,
too-few-public-methods,
too-many-arguments,
too-many-positional-arguments,
too-many-nested-blocks,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
too-many-boolean-expressions,
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=175
[EXCEPTIONS]
overgeneral-exceptions=builtins.Exception