summaryrefslogtreecommitdiffstats
path: root/pylintrc
blob: 045d059390051bb8635501a29cc6a298ef42ed0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[Basic]
# Variables can be 1 to 31 characters long, with
# lowercase and underscores
variable-rgx=[a-z_][a-z0-9_]{0,30}$

# Method names should be at least 3 characters long
# and be lowecased with underscores
method-rgx=[a-z_][a-z0-9_]{2,50}$

[MESSAGES CONTROL]
# TODOs in code comments are fine...
disable-msg=W0511

[Design]
max-public-methods=100
min-public-methods=0