Files
7ee8a0f8b2d781d758b62d2aec423a5a733d2aa7
nova /pylintrc

27 lines
774 B
INI
Raw Normal View History

2010年08月17日 23:46:16 -07:00
# W0511: TODOs in code comments are fine.
# W0142: *args and **kwargs are fine.
disable-msg=W0511,W0142
2010年08月18日 18:38:34 -07:00
# Variable names can be 1 to 31 characters long, with lowercase and underscores
2010年08月18日 18:38:34 -07:00
# Argument names can be 2 to 31 characters long, with lowercase and underscores
argument-rgx=[a-z_][a-z0-9_]{1,30}$
# Method names should be at least 3 characters long
# and be lowecased with underscores
method-rgx=[a-z_][a-z0-9_]{2,50}$
2010年08月17日 23:46:16 -07:00
# Module names matching nova-* are ok (files in bin/)
2010年08月18日 17:38:00 -07:00
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+)|(nova-[a-z0-9_-]+))$
2010年08月17日 23:46:16 -07:00
# Don't require docstrings on tests.
no-docstring-rgx=((__.*__)|([tT]est.*)|setUp|tearDown)$
max-public-methods=100
min-public-methods=0
2010年08月18日 18:38:34 -07:00
max-args=6