Lines Matching +full:comma +full:- +full:separated
7 # http://www.apache.org/licenses/LICENSE-2.0
22 #init-hook=
34 # List of plugins (as comma separated values of python modules names) to load,
36 load-plugins=
43 unsafe-load-any-extension=no
45 # A comma-separated list of package or module names from where C extensions may
48 extension-pkg-whitelist=
56 optimize-ast=no
62 enable=old-raise-syntax
69 # either give multiple identifier separated by comma (,) or put this option
70 # multiple time. See also the "--disable" option for examples.
74 # can either give multiple identifiers separated by comma (,) or put this
76 # file where it should appear only once).You can also use "--disable=all" to
78 # you want to run only the similarities checker, you can use "--disable=all
79 # --enable=similarities". If you want to run only the classes checker, but have
80 # no Warning level messages displayed, use"--disable=all --enable=classes
81 # --disable=W"
85 locally-disabled,
86 locally-enabled,
87 no-self-use,
88 star-args,
89 too-few-public-methods,
90 too-many-arguments,
91 too-many-branches,
92 too-many-instance-attributes,
93 too-many-lines,
94 too-many-locals,
95 too-many-public-methods,
96 too-many-return-statements,
97 too-many-statements,
105 output-format=text
110 files-output=no
120 #evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
122 # Template used to display messages. This is a python new-style format string
124 #msg-template=
130 min-similarity-lines=20
133 ignore-comments=yes
136 ignore-docstrings=yes
139 ignore-imports=no
146 ignore-mixin-members=yes
152 ignored-modules=update_payload.update_metadata_pb2
157 ignored-classes=hashlib,numpy
162 generated-members=
166 contextmanager-decorators=contextlib.contextmanager,contextlib2.contextmanager
172 # install python-enchant package.
173 spelling-dict=
175 # List of comma separated words that should not be checked.
176 spelling-ignore-words=
179 spelling-private-dict-file=
182 # --spelling-private-dict-file option instead of raising a message.
183 spelling-store-unknown-words=no
190 logging-modules=logging
196 init-import=no
199 dummy-variables-rgx=^\*{0,2}(_$|unused_|dummy_)
203 additional-builtins=
213 max-line-length=80
217 single-line-if-stmt=no
228 ignore-long-lines=(?x)
231 |^[a-zA-Z_][a-zA-Z0-9_]*\s*=\s*("[^"]\S+"|'[^']\S+')
235 max-module-lines=99999
239 indent-string=' '
242 indent-after-paren=4
245 expected-line-ending-format=LF
248 no-space-check=
253 # List of note tags to take in consideration, separated by a comma.
259 # Required attributes for module, separated by a comma
260 required-attributes=
262 # List of builtins function names that should not be used, separated by a comma
263 bad-functions=map,filter,input,apply,reduce
265 # Good variable names which should always be accepted, separated by a comma
266 good-names=i,j,k,ex,x,_,main
268 # Bad variable names which should always be refused, separated by a comma
269 bad-names=foo,bar,baz,toto,tutu,tata
271 # Colon-delimited sets of names that determine each other's naming style when
273 name-group=
275 # Include a hint for the correct naming format with invalid-name
276 include-naming-hint=no
281 function-rgx=^(?:(?P<camel_case>_?[A-Z][a-zA-Z0-9]*)|(?P<snake_case>_?[a-z][a-z0-9_]*))$
284 function-name-hint=[a-z_][a-z0-9_]{2,30}$
287 variable-rgx=^[a-z][a-z0-9_]*$
290 variable-name-hint=[a-z_][a-z0-9_]{2,30}$
293 const-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$
296 const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
299 attr-rgx=^_{0,2}[a-z][a-z0-9_]*$
302 attr-name-hint=[a-z_][a-z0-9_]{2,30}$
305 argument-rgx=^[a-z][a-z0-9_]*$
308 argument-name-hint=[a-z_][a-z0-9_]{2,30}$
311 class-attribute-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$
314 class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
318 inlinevar-rgx=^[a-z][a-z0-9_]*$
321 inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
324 class-rgx=^_?[A-Z][a-zA-Z0-9]*$
327 class-name-hint=[A-Z_][a-zA-Z0-9]+$
332 module-rgx=^(_?[a-z][a-z0-9_]*)|__init__$
335 module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
341 method-rgx=^(?:(?P<exempt>__[a-z0-9_]+__|next)|(?P<camel_case>_{0,2}[A-Z][a-zA-Z0-9]*)|(?P<snake_ca…
344 method-name-hint=[a-z_][a-z0-9_]{2,30}$
348 no-docstring-rgx=(__.*__|main)
352 docstring-min-length=10
355 property-classes=abc.abstractproperty
361 max-nested-blocks=5
367 max-args=5
371 ignored-argument-names=_.*
374 max-locals=15
377 max-returns=6
380 max-branches=12
383 max-statements=50
386 max-parents=10
389 max-attributes=7
392 min-public-methods=2
395 max-public-methods=20
398 max-bool-expr=5
404 defining-attr-methods=__init__,__new__,setUp
407 valid-classmethod-first-arg=cls
410 valid-metaclass-classmethod-first-arg=mcs
414 exclude-protected=_asdict,_fields,_replace,_source,_make
419 # Deprecated modules which should not be used, separated by a comma
420 deprecated-modules=regsub,TERMIOS,Bastion,rexec,optparse
424 import-graph=
428 ext-import-graph=
432 int-import-graph=
439 overgeneral-exceptions=StandardError,Exception,BaseException