[MERGE]
[odoo/odoo.git] / addons / base_module_quality / pylint_test / pylint_test_config.txt
1 # lint Python modules using external checkers.
2 #
3 # This is the main checker controlling the other ones and the reports
4 # generation. It is itself both a raw checker and an astng checker in order
5 # to:
6 # * handle message activation / deactivation at the module level
7 # * handle some basic but necessary stats'data (number of classes, methods...)
8 #
9 [MASTER]
10
11 # Specify a configuration file.
12 #rcfile=
13
14 # Profiled execution.
15 profile=no
16
17 # Add <file or directory> to the black list. It should be a base name, not a
18 # path. You may set this option multiple times.
19 ignore=CVS
20
21 # Pickle collected data for later comparisons.
22 persistent=no
23
24 # Set the cache size for astng objects.
25 cache-size=500
26
27 # List of plugins (as comma separated values of python modules names) to load,
28 # usually to register additional checkers.
29 load-plugins=
30
31
32 [COMMANDS]
33
34 # Display a help message for the given message id and exit. The value may be a
35 # comma separated list of message ids.
36 #help-msg=
37
38
39 [MESSAGES CONTROL]
40
41 # Enable only checker(s) with the given id(s). This option conflict with the
42 # disable-checker option
43 #enable-checker=
44
45 # Enable all checker(s) except those with the given id(s). This option conflict
46 # with the disable-checker option
47 #disable-checker=
48
49 # Enable all messages in the listed categories.
50 #enable-msg-cat=
51
52 # Disable all messages in the listed categories.
53 #disable-msg-cat=
54
55 # Enable the message(s) with the given id(s).
56 #enable-msg=
57
58 # Disable the message(s) with the given id(s).
59 disable-msg=C0103,F0401,E0611,R0903,W0232,W0102,E1002,R0913,R0904
60
61 [REPORTS]
62
63 # set the output format. Available formats are text, parseable, colorized and
64 # html
65 output-format=html
66
67 # Include message's id in output
68 include-ids=yes
69
70 # Put messages in a separate file for each module / package specified on the
71 # command line instead of printing them on stdout. Reports (if any) will be
72 # written in a file name "pylint_global.[txt|html]".
73 files-output=no
74
75 # Tells wether to display a full report or only the messages
76 reports=yes
77
78 # Python expression which should return a note less than 10 (10 is the highest
79 # note).You have access to the variables errors warning, statement which
80 # respectivly contain the number of errors / warnings messages and the total
81 # number of statements analyzed. This is used by the global evaluation report
82 # (R0004).
83 evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
84
85 # Add a comment according to your evaluation note. This is used by the global
86 # evaluation report (R0004).
87 comment=no
88
89 # Enable the report(s) with the given id(s).
90 #enable-report=
91
92 # Disable the report(s) with the given id(s).
93 #disable-report=
94
95
96 # checks for
97 # * unused variables / imports
98 # * undefined variables
99 # * redefinition of variable from builtins or from an outer scope
100 # * use of variable before assigment
101 #
102 [VARIABLES]
103
104 # Tells wether we should check for unused import in __init__ files.
105 init-import=no
106
107 # A regular expression matching names used for dummy variables (i.e. not used).
108 dummy-variables-rgx=_|dummy
109
110 # List of additional names supposed to be defined in builtins. Remember that
111 # you should avoid to define new builtins when possible.
112 additional-builtins=
113
114
115 # try to find bugs in the code using type inference
116 #
117 [TYPECHECK]
118
119 # Tells wether missing members accessed in mixin class should be ignored. A
120 # mixin class is detected if its name ends with "mixin" (case insensitive).
121 ignore-mixin-members=yes
122
123 # When zope mode is activated, consider the acquired-members option to ignore
124 # access to some undefined attributes.
125 zope=no
126
127 # List of members which are usually get through zope's acquisition mecanism and
128 # so shouldn't trigger E0201 when accessed (need zope=yes to be considered).
129 acquired-members=REQUEST,acl_users,aq_parent
130
131
132 # checks for :
133 # * doc strings
134 # * modules / classes / functions / methods / arguments / variables name
135 # * number of arguments, local variables, branchs, returns and statements in
136 # functions, methods
137 # * required module attributes
138 # * dangerous default values as arguments
139 # * redefinition of function / method / class
140 # * uses of the global statement
141 #
142 [BASIC]
143
144 # Required attributes for module, separated by a comma
145 required-attributes=
146
147 # Regular expression which should only match functions or classes name which do
148 # not require a docstring
149 no-docstring-rgx=__.*__
150
151 # Regular expression which should only match correct module names
152 module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
153
154 # Regular expression which should only match correct module level names
155 const-rgx=(([A-Z_][A-Z1-9_]*)|(__.*__))$
156
157 # Regular expression which should only match correct class names
158 class-rgx=[A-Z_][a-zA-Z0-9]+$
159
160 # Regular expression which should only match correct function names
161 function-rgx=[a-z_][a-z0-9_]{2,30}$
162
163 # Regular expression which should only match correct method names
164 method-rgx=[a-z_][a-z0-9_]{2,30}$
165
166 # Regular expression which should only match correct instance attribute names
167 attr-rgx=[a-z_][a-z0-9_]{2,30}$
168
169 # Regular expression which should only match correct argument names
170 argument-rgx=[a-z_][a-z0-9_]{2,30}$
171
172 # Regular expression which should only match correct variable names
173 variable-rgx=[a-z_][a-z0-9_]{2,30}$
174
175 # Regular expression which should only match correct list comprehension /
176 # generator expression variable names
177 inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
178
179 # Good variable names which should always be accepted, separated by a comma
180 good-names=i,j,k,ex,Run,_
181
182 # Bad variable names which should always be refused, separated by a comma
183 bad-names=foo,bar,baz,toto,tutu,tata
184
185 # List of builtins function names that should not be used, separated by a comma
186 bad-functions=map,filter,apply,input
187
188
189 # checks for
190 # * external modules dependencies
191 # * relative / wildcard imports
192 # * cyclic imports
193 # * uses of deprecated modules
194 #
195 [IMPORTS]
196
197 # Deprecated modules which should not be used, separated by a comma
198 deprecated-modules=regsub,string,TERMIOS,Bastion,rexec
199
200 # Create a graph of every (i.e. internal and external) dependencies in the
201 # given file (report R0402 must not be disabled)
202 import-graph=
203
204 # Create a graph of external dependencies in the given file (report R0402 must
205 # not be disabled)
206 ext-import-graph=
207
208 # Create a graph of internal dependencies in the given file (report R0402 must
209 # not be disabled)
210 int-import-graph=
211
212
213 # checks for :
214 # * methods without self as first argument
215 # * overridden methods signature
216 # * access only to existant members via self
217 # * attributes not defined in the __init__ method
218 # * supported interfaces implementation
219 # * unreachable code
220 #
221 [CLASSES]
222
223 # List of interface methods to ignore, separated by a comma. This is used for
224 # instance to not check methods defines in Zope's Interface base class.
225 ignore-iface-methods=isImplementedBy,deferred,extends,names,namesAndDescriptions,queryDescriptionFor,getBases,getDescriptionFor,getDoc,getName,getTaggedValue,getTaggedValueTags,isEqualOrExtendedBy,setTaggedValue,isImplementedByInstancesOf,adaptWith,is_implemented_by
226
227 # List of method names used to declare (i.e. assign) instance attributes.
228 defining-attr-methods=__init__,__new__,setUp
229
230
231 # checks for sign of poor/misdesign:
232 # * number of methods, attributes, local variables...
233 # * size, complexity of functions, methods
234 #
235 [DESIGN]
236
237 # Maximum number of arguments for function / method
238 max-args=5
239
240 # Maximum number of locals for function / method body
241 max-locals=15
242
243 # Maximum number of return / yield for function / method body
244 max-returns=6
245
246 # Maximum number of branch for function / method body
247 max-branchs=12
248
249 # Maximum number of statements in function / method body
250 max-statements=50
251
252 # Maximum number of parents for a class (see R0901).
253 max-parents=7
254
255 # Maximum number of attributes for a class (see R0902).
256 max-attributes=7
257
258 # Minimum number of public methods for a class (see R0903).
259 min-public-methods=2
260
261 # Maximum number of public methods for a class (see R0904).
262 max-public-methods=20
263
264
265 # checks for :
266 # * unauthorized constructions
267 # * strict indentation
268 # * line length
269 # * use of <> instead of !=
270 #
271 [FORMAT]
272
273 # Maximum number of characters on a single line.
274 max-line-length=80
275
276 # Maximum number of lines in a module
277 max-module-lines=1000
278
279 # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
280 # tab).
281 indent-string='    '
282 #indent-string="\t"
283
284
285 # checks for similarities and duplicated code. This computation may be
286 # memory / CPU intensive, so you should disable it if you experiments some
287 # problems.
288 #
289 [SIMILARITIES]
290
291 # Minimum lines number of a similarity.
292 min-similarity-lines=4
293
294 # Ignore comments when computing similarities.
295 ignore-comments=yes
296
297 # Ignore docstrings when computing similarities.
298 ignore-docstrings=yes
299
300
301 # checks for:
302 # * warning notes in the code like FIXME, XXX
303 # * PEP 263: source code with non ascii character but no encoding declaration
304 #
305 [MISCELLANEOUS]
306
307 # List of note tags to take in consideration, separated by a comma.
308 notes=FIXME,XXX,TODO