-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pylintrc
30 lines (24 loc) · 790 Bytes
/
.pylintrc
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
[BASIC]
# Good variable names which should always be accepted, separated by a comma.
good-names=i, j, k, ex, Run, _, gc, at, id
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=120
[DESIGN]
# Maximum number of arguments for function / method.
max-args=7
# Maximum number of attributes for a class (see R0902).
max-attributes=10
# Minimum number of public methods for a class (see R0903).
min-public-methods=0
[MESSAGES CONTROL]
# Disable the message, report, category or checker with the given id(s).
disable=raw-checker-failed,
bad-inline-option,
locally-disabled,
file-ignored,
suppressed-message,
useless-suppression,
deprecated-pragma,
use-symbolic-message-instead,
consider-using-f-string,