~vishvananda/nova/lp615857

« back to all changes in this revision

Viewing changes to pylintrc

  • Committer: Tarmac
  • Author(s): jaypipes at gmail
  • Date: 2010-08-10 04:52:54 UTC
  • mfrom: (212.1.4 pylint)
  • Revision ID: hudson@openstack.org-20100810045254-ajceggs1gkz9iq44
pylint fixes for /nova/test.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
disable-msg=C0103
3
3
 
4
4
[Basic]
 
5
# Variables can be 1 to 31 characters long, with
 
6
# lowercase and underscores
 
7
variable-rgx=[a-z_][a-z0-9_]{0,30}$
 
8
 
 
9
# Method names should be at least 3 characters long
 
10
# and be lowecased with underscores
5
11
method-rgx=[a-z_][a-z0-9_]{2,50}$
6
12
 
 
13
[MESSAGES CONTROL]
 
14
# TODOs in code comments are fine...
 
15
disable-msg=W0511
 
16
 
7
17
[Design]
8
18
max-public-methods=100
9
19
min-public-methods=0