Fix metaclasses support in recent pylint versions
[ganeti-local] / pylintrc
1 # Configuration file for pylint (http://www.logilab.org/project/pylint). See
2 # http://www.logilab.org/card/pylintfeatures for more detailed variable
3 # descriptions.
4
5 [MASTER]
6 profile = no
7 ignore =
8 persistent = no
9 cache-size = 50000
10 load-plugins =
11
12 [REPORTS]
13 output-format = colorized
14 include-ids = yes
15 files-output = no
16 reports = no
17 evaluation = 10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
18 comment = yes
19
20 [BASIC]
21 required-attributes =
22 # disabling docstring checks since we have way too many without (complex
23 # inheritance hierarchies)
24 #no-docstring-rgx = __.*__
25 no-docstring-rgx = .*
26 module-rgx = (([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
27 # added lower-case names
28 const-rgx = ((_{0,2}[A-Za-z][A-Za-z0-9_]*)|(__.*__))$
29 class-rgx = _?[A-Z][a-zA-Z0-9]+$
30 # added lower-case names
31 function-rgx = (_?([A-Z]+[a-z0-9]+([A-Z]+[a-z0-9]*)*)|main|([a-z_][a-z0-9_]*))$
32 # add lower-case names, since derived classes must obey method names
33 method-rgx = (_{0,2}[A-Z]+[a-z0-9]+([A-Z]+[a-z0-9]*)*|__.*__|([a-z_][a-z0-9_]*))$
34 attr-rgx = [a-z_][a-z0-9_]{1,30}$
35 argument-rgx = [a-z_][a-z0-9_]*$
36 variable-rgx = (_?([a-z_][a-z0-9_]*)|(_?[A-Z0-9_]+))$
37 inlinevar-rgx = [A-Za-z_][A-Za-z0-9_]*$
38 good-names = i,j,k,_
39 bad-names = foo,bar,baz,toto,tutu,tata
40 bad-functions = xrange
41
42 [TYPECHECK]
43 ignore-mixin-members = yes
44 zope = no
45 acquired-members =
46
47 [VARIABLES]
48 init-import = no
49 dummy-variables-rgx = _
50 additional-builtins =
51
52 [CLASSES]
53 ignore-iface-methods =
54 defining-attr-methods = __init__,__new__,setUp
55 valid-classmethod-first-arg = cls,mcs
56
57 [DESIGN]
58 max-args = 15
59 max-locals = 50
60 max-returns = 10
61 max-branchs = 80
62 max-statements = 200
63 max-parents = 7
64 max-attributes = 20
65 # zero as struct-like (PODS) classes don't export any methods
66 min-public-methods = 0
67 max-public-methods = 50
68
69 [IMPORTS]
70 deprecated-modules = regsub,string,TERMIOS,Bastion,rexec
71 import-graph =
72 ext-import-graph =
73 int-import-graph =
74
75 [FORMAT]
76 max-line-length = 80
77 max-module-lines = 4500
78 indent-string = "  "
79
80 [MISCELLANEOUS]
81 notes = FIXME,XXX,TODO
82
83 [SIMILARITIES]
84 min-similarity-lines = 4
85 ignore-comments = yes
86 ignore-docstrings = yes
87
88 [MESSAGES CONTROL]
89
90 # Enable only checker(s) with the given id(s). This option conflicts with the
91 # disable-checker option
92 #enable-checker=
93
94 # Enable all checker(s) except those with the given id(s). This option
95 # conflicts with the enable-checker option
96 #disable-checker=
97 disable-checker=similarities
98
99 # Enable all messages in the listed categories (IRCWEF).
100 #enable-msg-cat=
101
102 # Disable all messages in the listed categories (IRCWEF).
103 disable-msg-cat=
104
105 # Enable the message(s) with the given id(s).
106 #enable-msg=
107
108 # Disable the message(s) with the given id(s).
109 disable-msg=W0511,R0922,W0201
110
111 # The new pylint 0.21+ style (plus the similarities checker, which is no longer
112 # a separate opiton, but a generic disable control)
113 disable=W0511,R0922,W0201,R0922,R0801,I0011