-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
32 lines (21 loc) · 839 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
31
32
[MESSAGES CONTROL]
# Disable the message, report, category or checker with the given id(s).
disable=import-error,duplicate-code,missing-docstring,too-few-public-methods,bad-builtin,super-init-not-called,star-args,no-self-use,no-init
[VARIABLES]
# Tells whether we should check for unused import in __init__ files.
init-import=no
# A regular expression matching the name of dummy variables (i.e. expectedly
# not used).
dummy-variables-rgx=_|__
[BASIC]
# Good variable names which should always be accepted, separated by a comma
good-names=i,j,k,_,__,ok,id
# Regular expression matching correct constant names
const-rgx=(([A-Za-z_][A-Za-z0-9_]*)|(__.*__))$
# Regular expression matching correct function names
function-rgx=(test_)?[a-z_][a-z0-9_]{2,35}$
[REPORTS OPTIONS]
# Disable reports
reports=no
[FORMAT]
max-line-length=95