Lines Matching +full:comma +full:- +full:separated
3 # Copyright © 2020-2021 Arm Ltd and Contributors. All rights reserved.
4 # SPDX-License-Identifier: MIT
13 ignore-patterns=_version.py
17 #init-hook=
22 # List of plugins (as comma separated values of python modules names) to load,
24 load-plugins=
34 unsafe-load-any-extension=no
44 # can either give multiple identifiers separated by comma (,) or put this
46 # file where it should appear only once).You can also use "--disable=all" to
48 # you want to run only the similarities checker, you can use "--disable=all
49 # --enable=similarities". If you want to run only the classes checker, but have
50 # no Warning level messages displayed, use"--disable=all --enable=classes
51 # --disable=W"
53 print-statement,
54 parameter-unpacking,
55 unpacking-in-except,
56 old-raise-syntax,
58 long-suffix,
59 old-ne-operator,
60 old-octal-literal,
61 import-star-module-level,
62 raw-checker-failed,
63 bad-inline-option,
64 locally-disabled,
65 locally-enabled,
66 file-ignored,
67 suppressed-message,
68 useless-suppression,
69 deprecated-pragma,
70 apply-builtin,
71 basestring-builtin,
72 buffer-builtin,
73 cmp-builtin,
74 coerce-builtin,
75 execfile-builtin,
76 file-builtin,
77 long-builtin,
78 raw_input-builtin,
79 reduce-builtin,
80 standarderror-builtin,
81 unicode-builtin,
82 xrange-builtin,
83 coerce-method,
84 delslice-method,
85 getslice-method,
86 setslice-method,
87 no-absolute-import,
88 old-division,
89 dict-iter-method,
90 dict-view-method,
91 next-method-called,
92 metaclass-assignment,
93 indexing-exception,
94 raising-string,
95 reload-builtin,
96 oct-method,
97 hex-method,
98 nonzero-method,
99 cmp-method,
100 input-builtin,
101 round-builtin,
102 intern-builtin,
103 unichr-builtin,
104 map-builtin-not-iterating,
105 zip-builtin-not-iterating,
106 range-builtin-not-iterating,
107 filter-builtin-not-iterating,
108 using-cmp-argument,
109 eq-without-hash,
110 div-method,
111 idiv-method,
112 rdiv-method,
113 exception-message-attribute,
114 invalid-str-codec,
115 sys-max-int,
116 bad-python3-import,
117 deprecated-string-function,
118 deprecated-str-translate-call
121 # either give multiple identifier separated by comma (,) or put this option
123 # it should appear only once). See also the "--disable" option for examples.
134 evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
136 # Template used to display messages. This is a python new-style format string
138 #msg-template=
143 output-format=colorized
155 max-nested-blocks=5
161 argument-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
164 argument-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
167 attr-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
170 attr-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
172 # Bad variable names which should always be refused, separated by a comma
173 bad-names=foo,bar,baz,toto,tutu,tata
176 class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
179 class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
182 class-name-hint=[A-Z_][a-zA-Z0-9]+$
185 class-rgx=[A-Z_][a-zA-Z0-9]+$
188 const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
191 const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
195 docstring-min-length=-1
198 function-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
201 function-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
203 # Good variable names which should always be accepted, separated by a comma
204 good-names=i,j,k,ex,Run,_
206 # Include a hint for the correct naming format with invalid-name
207 include-naming-hint=no
210 inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
213 inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
216 method-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
219 method-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
222 module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
225 module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
227 # Colon-delimited sets of names that determine each other's naming style when
229 name-group=
233 no-docstring-rgx=^_
237 property-classes=abc.abstractproperty
240 variable-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
243 variable-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
249 # install python-enchant package.
250 spelling-dict=
252 # List of comma separated words that should not be checked.
253 spelling-ignore-words=
256 spelling-private-dict-file=
259 # --spelling-private-dict-file option instead of raising a message.
260 spelling-store-unknown-words=no
266 ignore-comments=yes
269 ignore-docstrings=yes
272 ignore-imports=no
275 min-similarity-lines=4
281 expected-line-ending-format=
284 ignore-long-lines=^\s*(# )?<?https?://\S+>?$
287 indent-after-paren=4
291 indent-string=' '
294 max-line-length=120
297 max-module-lines=1000
299 # List of optional constructs for which whitespace checking is disabled. `dict-
301 # `trailing-comma` allows a space between comma and closing bracket: (a, ).
302 # `empty-line` allows space-only lines.
303 no-space-check=trailing-comma,dict-separator
307 single-line-class-stmt=no
311 single-line-if-stmt=no
318 logging-modules=logging
326 contextmanager-decorators=contextlib.contextmanager
331 generated-members=
335 ignore-mixin-members=yes
337 # This flag controls whether pylint should warn about no-member and similar
341 # that case, it might be useful to still emit no-member and other checks for
343 ignore-on-opaque-inference=yes
348 ignored-classes=optparse.Values,thread._local,_thread._local
354 ignored-modules=
358 missing-member-hint=yes
362 missing-member-hint-distance=1
366 missing-member-max-choices=1
373 additional-builtins=
376 allow-global-unused-variables=yes
384 dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
388 ignored-argument-names=_.*|^ignored_|^unused_
391 init-import=no
395 redefining-builtins-modules=six.moves,future.builtins
400 # List of note tags to take in consideration, separated by a comma.
407 allow-wildcard-with-all=no
412 analyse-fallback-blocks=no
414 # Deprecated modules which should not be used, separated by a comma
415 deprecated-modules=optparse,tkinter.tix
419 ext-import-graph=
423 import-graph=
427 int-import-graph=
431 known-standard-library=
434 known-third-party=enchant
440 defining-attr-methods=__init__,__new__,setUp
444 exclude-protected=_asdict,_fields,_replace,_source,_make
447 valid-classmethod-first-arg=cls
450 valid-metaclass-classmethod-first-arg=mcs
456 max-args=5
459 max-attributes=7
462 max-bool-expr=5
465 max-branches=12
468 max-locals=15
471 max-parents=7
474 max-public-methods=20
477 max-returns=6
480 max-statements=50
483 min-public-methods=2
490 overgeneral-exceptions=Exception