~hawkowl/twistedchecker/string-formatting-1165416

« back to all changes in this revision

Viewing changes to twistedchecker/configuration/pylintrc

  • Committer: zomux
  • Date: 2012-07-29 23:25:18 UTC
  • mfrom: (10.2.1 check-const-name)
  • Revision ID: raphael@uaca.com-20120729232518-956idetavh16z5dh
merged check-const-name

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
# FooBar, Foo, FOO, foo_bar
77
77
variable-rgx=([a-z_][a-zA-Z0-9]*)$
78
78
 
 
79
# Constant names.
 
80
# Constants in principle should named in style of FOO_BAR or FOOBAR.
 
81
# But in Twisted, many constants are named in style of variable names or
 
82
# class names, so just make sure they are valid.
 
83
const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__)|([a-z_][a-zA-Z0-9]+)|([A-Z][a-zA-Z0-9]+))$
79
84
 
80
85
[SIMILARITIES]
81
86