~gary/python-openid/python-openid-2.2.1-patched

« back to all changes in this revision

Viewing changes to pylintrc

  • Committer: Launchpad Patch Queue Manager
  • Date: 2007-11-30 02:46:28 UTC
  • mfrom: (1.1.1 pyopenid-2.0)
  • Revision ID: launchpad@pqm.canonical.com-20071130024628-qktwsew3383iawmq
[rs=SteveA] upgrade to python-openid-2.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[REPORTS]
 
2
 
 
3
include-ids=y
 
4
 
 
5
[BASIC]
 
6
 
 
7
# Required attributes for module, separated by a comma
 
8
required-attributes=__all__
 
9
 
 
10
# Regular expression which should only match functions or classes name which do
 
11
# not require a docstring
 
12
no-docstring-rgx=__.*__
 
13
 
 
14
# Regular expression which should only match correct module names
 
15
module-rgx=[a-z_][a-z0-9_]*$
 
16
 
 
17
# Regular expression which should only match correct module level names
 
18
const-rgx=(([a-z_][a-z0-9_]*)|(__.*__))$
 
19
 
 
20
# Regular expression which should only match correct class names
 
21
class-rgx=[A-Z_][a-zA-Z0-9]+$
 
22
 
 
23
# Regular expression which should only match correct function names
 
24
function-rgx=[a-z_][A-Za-z0-9_]{2,30}$
 
25
 
 
26
# Regular expression which should only match correct method names
 
27
method-rgx=[a-z_][A-Za-z0-9_]{2,30}$
 
28
 
 
29
# Regular expression which should only match correct list comprehension /
 
30
# generator expression variable names
 
31
inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
 
32
 
 
33
# Good variable names which should always be accepted, separated by a comma
 
34
good-names=i,j,k,ex,Run,_
 
35
 
 
36
# Bad variable names which should always be refused, separated by a comma
 
37
bad-names=foo,bar,baz,toto,tutu,tata
 
38
 
 
39
# List of builtins function names that should not be used, separated by a comma
 
40
bad-functions=input