Lines Matching +full:use +full:- +full:external +full:- +full:names
1 # lint Python modules using external checkers.
25 cache-size=500
27 # List of plugins (as comma separated values of python modules names) to load,
29 load-plugins=
36 #help-msg=
42 # disable-checker option
43 #enable-checker=
46 # with the disable-checker option
47 #disable-checker=
50 #enable-msg-cat=
53 #disable-msg-cat=
56 #enable-msg=
59 # W0622: Redefining built-in '...'
72 disable-msg=W0622, C0103, R0904, R0201, C0302, R0902, R0913, R0912, R0903, C0111, W0403, W0401, W01…
79 output-format=text
82 include-ids=yes
87 files-output=no
97 evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
104 #enable-report=
107 #disable-report=
116 ignore-mixin-members=yes
118 # When zope mode is activated, consider the acquired-members option to ignore
124 acquired-members=REQUEST,acl_users,aq_parent
131 # * use of variable before assigment
136 init-import=no
138 # A regular expression matching names used for dummy variables (i.e. not used).
139 dummy-variables-rgx=_|dummy
141 # List of additional names supposed to be defined in builtins. Remember that
143 additional-builtins=
159 required-attributes=
163 no-docstring-rgx=__.*__
165 # Regular expression which should only match correct module names
166 module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
168 # Regular expression which should only match correct module level names
169 const-rgx=(([A-Z_][A-Z1-9_]*)|(__.*__))$
171 # Regular expression which should only match correct class names
172 class-rgx=[A-Z_][a-zA-Z0-9]+$
174 # Regular expression which should only match correct function names
175 function-rgx=[a-z_][a-z0-9_]{2,30}$
177 # Regular expression which should only match correct method names
178 method-rgx=[a-z_][a-z0-9_]{2,30}$
180 # Regular expression which should only match correct instance attribute names
181 attr-rgx=[a-z_][a-z0-9_]{2,30}$
183 # Regular expression which should only match correct argument names
184 argument-rgx=[a-z_][a-z0-9_]{2,30}$
186 # Regular expression which should only match correct variable names
187 variable-rgx=[a-z_][a-z0-9_]{2,30}$
190 # generator expression variable names
191 inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
193 # Good variable names which should always be accepted, separated by a comma
194 good-names=i,j,k,ex,Run,_
196 # Bad variable names which should always be refused, separated by a comma
197 bad-names=foo,bar,baz,toto,tutu,tata
199 # List of builtins function names that should not be used, separated by a comma
200 bad-functions=map,filter,apply,input
210 max-args=5
213 max-locals=15
216 max-returns=6
219 max-branchs=12
222 max-statements=50
225 max-parents=7
228 max-attributes=7
231 min-public-methods=2
234 max-public-methods=20
249 ignore-iface-methods=isImplementedBy,deferred,extends,names,namesAndDescriptions,queryDescriptionFo…
251 # List of method names used to declare (i.e. assign) instance attributes.
252 defining-attr-methods=__init__,__new__,setUp
256 # * external modules dependencies
264 deprecated-modules=regsub,string,TERMIOS,Bastion,rexec
266 # Create a graph of every (i.e. internal and external) dependencies in the
268 import-graph=
270 # Create a graph of external dependencies in the given file (report R0402 must
272 ext-import-graph=
276 int-import-graph=
286 min-similarity-lines=4
289 ignore-comments=yes
292 ignore-docstrings=yes
299 # * use of <> instead of !=
304 max-line-length=80
307 max-module-lines=1000
311 indent-string=' '