-
Notifications
You must be signed in to change notification settings - Fork 33
/
.pylintrc
42 lines (27 loc) · 1.19 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
[MASTER]
#init-hook='import sys; import os; sys.path.append(os.getcwd() + "/example/hello_world")'
[MESSAGES CONTROL]
#disable=superfluous-parens,anomalous-backslash-in-string,bad-builtin,invalid-name
disable=R1717,R1732,W0105,W0141,R0903,F0401,R0912,R0914,R0915,E0611,E1101,E1103,W0122,C0303,broad-except,global-statement,too-many-instance-attributes,no-self-use,superfluous-parens,locally-disabled,locally-enabled,no-else-break,unnecessary-comprehension,bad-option-value,consider-using-sys-exit,unspecified-encoding,consider-using-generator
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=120
# Maximum number of lines in a module
max-module-lines=2000
[REPORTS]
reports=no
#include-ids=yes
[BASIC]
# Naming style matching correct constant names.
const-naming-style=any # disabled constants because all "global" variables count as constants. Makes it so every var in kmom01-02 is constants.
# Include a hint for the correct naming format with invalid-name.
include-naming-hint=yes
# Good variable names which should always be accepted, separated by a comma.
good-names=i,
j,
k,
ex,
Run,
_,
fd,
c