nova/pylintrc
2010-08-10 04:52:54 +00:00

20 lines
411 B
INI

[Messages Control]
disable-msg=C0103
[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