Lines Matching +full:comma +full:- +full:separated
8 #init-hook=
17 # List of plugins (as comma separated values of python modules names) to load,
19 load-plugins=
26 unsafe-load-any-extension=no
28 # A comma-separated list of package or module names from where C extensions may
31 extension-pkg-whitelist=
39 optimize-ast=no
49 # either give multiple identifier separated by comma (,) or put this option
51 # it should appear only once). See also the "--disable" option for examples.
55 # can either give multiple identifiers separated by comma (,) or put this
57 # file where it should appear only once).You can also use "--disable=all" to
58 # disable everything first and then re-enable specific checks. For example, if
59 # you want to run only the similarities checker, you can use "--disable=all
60 # --enable=similarities". If you want to run only the classes checker, but have
61 # no Warning level messages displayed, use"--disable=all --enable=classes
62 # --disable=W"
65 locally-disabled,
66 missing-docstring,
69 import-star-module-level,
70 old-octal-literal,
71 oct-method,
72 print-statement,
73 unpacking-in-except,
74 parameter-unpacking,
76 old-raise-syntax,
77 old-ne-operator,
78 long-suffix,
79 dict-view-method,
80 dict-iter-method,
81 metaclass-assignment,
82 next-method-called,
83 raising-string,
84 indexing-exception,
85 raw_input-builtin,
86 long-builtin,
87 file-builtin,
88 execfile-builtin,
89 coerce-builtin,
90 cmp-builtin,
91 buffer-builtin,
92 basestring-builtin,
93 apply-builtin,
94 filter-builtin-not-iterating,
95 using-cmp-argument,
96 useless-suppression,
97 range-builtin-not-iterating,
98 suppressed-message,
99 no-absolute-import,
100 old-division,
101 cmp-method,
102 reload-builtin,
103 zip-builtin-not-iterating,
104 intern-builtin,
105 unichr-builtin,
106 reduce-builtin,
107 standarderror-builtin,
108 unicode-builtin,
109 xrange-builtin,
110 coerce-method,
111 delslice-method,
112 getslice-method,
113 setslice-method,
114 input-builtin,
115 round-builtin,
116 hex-method,
117 nonzero-method,
118 map-builtin-not-iterating,
126 output-format=text
131 files-output=no
141 evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
143 # Template used to display messages. This is a python new-style format string
145 #msg-template=
151 max-line-length=100
154 ignore-long-lines=^\s*(# )?<?https?://\S+>?$
158 single-line-if-stmt=no
160 # List of optional constructs for which whitespace checking is disabled. `dict-
162 # `trailing-comma` allows a space between comma and closing bracket: (a, ).
163 # `empty-line` allows space-only lines.
164 no-space-check=trailing-comma,dict-separator
167 max-module-lines=1000
171 indent-string=' '
174 indent-after-paren=4
177 expected-line-ending-format=
183 # install python-enchant package.
184 spelling-dict=
186 # List of comma separated words that should not be checked.
187 spelling-ignore-words=
190 spelling-private-dict-file=
193 # --spelling-private-dict-file option instead of raising a message.
194 spelling-store-unknown-words=no
201 logging-modules=logging
206 # List of builtins function names that should not be used, separated by a comma
207 bad-functions=map,filter,input
209 # Good variable names which should always be accepted, separated by a comma
210 good-names=i,e,s,_,fd,fp
212 # Bad variable names which should always be refused, separated by a comma
213 bad-names=foo,bar,baz,toto,tutu,tata
215 # Colon-delimited sets of names that determine each other's naming style when
217 name-group=
219 # Include a hint for the correct naming format with invalid-name
220 include-naming-hint=no
224 #function-rgx=[a-z_][a-z0-9_]{2,30}$
225 function-rgx=[a-zA-Z_][a-zA-Z0-9_]{2,40}$
228 function-name-hint=[a-z_][a-z0-9_]{2,30}$
231 variable-rgx=[a-z_][a-z0-9_]{2,30}$
234 variable-name-hint=[a-z_][a-z0-9_]{2,30}$
238 #const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
239 const-rgx=(([a-zA-Z_][a-zA-Z0-9_]*)|(__.*__))$
242 const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
245 attr-rgx=[a-z_][a-z0-9_]{2,30}$
248 attr-name-hint=[a-z_][a-z0-9_]{2,30}$
251 argument-rgx=[a-z_][a-z0-9_]{2,30}$
254 argument-name-hint=[a-z_][a-z0-9_]{2,30}$
258 #class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
259 class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,40}|(__.*__))$
262 class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
265 inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
268 inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
272 #class-rgx=[A-Z_][a-zA-Z0-9]+$
273 class-rgx=[a-zA-Z_][a-zA-Z0-9]+$
276 class-name-hint=[A-Z_][a-zA-Z0-9]+$
279 module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
282 module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
286 #method-rgx=[a-z_][a-z0-9_]{2,30}$
287 method-rgx=[a-zA-Z_][a-zA-Z0-9_]{2,40}$
290 method-name-hint=[a-z_][a-z0-9_]{2,30}$
294 no-docstring-rgx=^_
298 docstring-min-length=-1
304 max-nested-blocks=5
310 min-similarity-lines=4
313 ignore-comments=yes
316 ignore-docstrings=yes
319 ignore-imports=no
326 ignore-mixin-members=yes
332 ignored-modules=
337 ignored-classes=
342 generated-members=
347 # List of note tags to take in consideration, separated by a comma.
354 init-import=no
358 dummy-variables-rgx=_$|dummy
362 additional-builtins=
372 defining-attr-methods=__init__,__new__,setUp
375 valid-classmethod-first-arg=cls
378 valid-metaclass-classmethod-first-arg=mcs
382 exclude-protected=_asdict,_fields,_replace,_source,_make
388 max-args=5
392 ignored-argument-names=_.*
395 max-locals=15
398 max-returns=6
401 max-branches=12
404 max-statements=50
407 max-parents=7
410 max-attributes=7
413 min-public-methods=2
416 max-public-methods=20
419 max-bool-expr=5
424 # Deprecated modules which should not be used, separated by a comma
425 deprecated-modules=regsub,TERMIOS,Bastion,rexec
429 import-graph=
433 ext-import-graph=
437 int-import-graph=
444 overgeneral-exceptions=Exception