Added all common modules in conductor directory
[optf/has.git] / conductor / pylintrc
1 [Messages Control]
2 # W0511: TODOs in code comments are fine.
3 # W0142: *args and **kwargs are fine.
4 # W0622: Redefining id is fine.
5 disable-msg=W0511,W0142,W0622
6
7 [Basic]
8 # Variable names can be 1 to 31 characters long, with lowercase and underscores
9 variable-rgx=[a-z_][a-z0-9_]{0,30}$
10
11 # Argument names can be 2 to 31 characters long, with lowercase and underscores
12 argument-rgx=[a-z_][a-z0-9_]{1,30}$
13
14 # Method names should be at least 3 characters long
15 # and be lowecased with underscores
16 method-rgx=[a-z_][a-z0-9_]{2,50}$
17
18 # Don't require docstrings on tests.
19 no-docstring-rgx=((__.*__)|([tT]est.*)|setUp|tearDown)$
20
21 # Exclude variable names that conflict with debugger
22 bad-names=c
23 [Design]
24 max-public-methods=100
25 min-public-methods=0
26 max-args=6