~nova-coresec/nova/ppa-lucid

« back to all changes in this revision

Viewing changes to pylintrc

  • Committer: Soren Hansen
  • Date: 2010-10-29 13:04:56 UTC
  • mfrom: (181.1.207 nova)
  • Revision ID: soren.hansen@rackspace.com-20101029130456-ygryth9050csgar4
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 
14
14
# Method names should be at least 3 characters long
15
15
# and be lowecased with underscores
16
 
method-rgx=[a-z_][a-z0-9_]{2,50}$
 
16
method-rgx=([a-z_][a-z0-9_]{2,50}|setUp|tearDown)$
17
17
 
18
18
# Module names matching nova-* are ok (files in bin/)
19
19
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+)|(nova-[a-z0-9_-]+))$