• Home
  • Raw
  • Download

Lines Matching +full:branches +full:- +full:ignore

3 # A comma-separated list of package or module names from where C extensions may
7 extension-pkg-whitelist=mypy
11 ignore=CVS
15 ignore-patterns=
19 #init-hook=
21 # Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
28 limit-inference-results=100
32 load-plugins=
41 # user-friendly hints instead of false-positive error messages.
42 suggestion-mode=yes
46 unsafe-load-any-extension=no
58 # file where it should appear only once). You can also use "--disable=all" to
60 # you want to run only the similarities checker, you can use "--disable=all
61 # --enable=similarities". If you want to run only the classes checker, but have
62 # no Warning level messages displayed, use "--disable=all --enable=classes
63 # --disable=W".
64 disable=bad-continuation, # Rely on yapf for formatting
66 subprocess-run-check,
67 raise-missing-from,
72 # it should appear only once). See also the "--disable" option for examples.
73 enable=c-extension-no-member,
83 evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
85 # Template used to display messages. This is a python new-style format string
87 #msg-template=
92 output-format=colorized
104 max-nested-blocks=5
107 # inconsistent-return-statements if a never returning function is called then
110 never-returning-functions=sys.exit
116 expected-line-ending-format=LF
119 ignore-long-lines=^\s*(# )?<?https?://\S+>?$
122 indent-after-paren=4
126 indent-string=' '
129 max-line-length=80
132 max-module-lines=9999
134 # List of optional constructs for which whitespace checking is disabled. `dict-
136 # `trailing-comma` allows a space between comma and closing bracket: (a, ).
137 # `empty-line` allows space-only lines.
138 no-space-check=trailing-comma,
139 dict-separator
143 single-line-class-stmt=no
147 single-line-if-stmt=no
154 additional-builtins=
157 allow-global-unused-variables=yes
166 dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
170 ignored-argument-names=_.*|^ignored_|^unused_
173 init-import=no
177 redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io
183 max-spelling-suggestions=4
186 # install the python-enchant package.
187 spelling-dict=
190 spelling-ignore-words=
193 spelling-private-dict-file=
196 # --spelling-private-dict-file option) instead of raising a message.
197 spelling-store-unknown-words=no
203 # formatting, `new` is for `{}` formatting,and `fstr` is for f-strings.
204 logging-format-style=old
208 logging-modules=logging
213 # Ignore comments when computing similarities.
214 ignore-comments=yes
216 # Ignore docstrings when computing similarities.
217 ignore-docstrings=yes
219 # Ignore imports when computing similarities.
220 ignore-imports=no
223 min-similarity-lines=4
236 # This flag controls whether the implicit-str-concat-in-sequence should
239 check-str-concat-over-line-jumps=no
245 argument-naming-style=snake_case
247 # Regular expression matching correct argument names. Overrides argument-
248 # naming-style.
249 #argument-rgx=
252 attr-naming-style=snake_case
254 # Regular expression matching correct attribute names. Overrides attr-naming-
256 #attr-rgx=
259 bad-names=foo,
267 class-attribute-naming-style=any
269 # Regular expression matching correct class attribute names. Overrides class-
270 # attribute-naming-style.
271 #class-attribute-rgx=
274 class-naming-style=PascalCase
276 # Regular expression matching correct class names. Overrides class-naming-
278 #class-rgx=
281 const-naming-style=UPPER_CASE
283 # Regular expression matching correct constant names. Overrides const-naming-
285 const-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$
289 docstring-min-length=30
292 function-naming-style=snake_case
294 # Regular expression matching correct function names. Overrides function-
295 # naming-style.
296 #function-rgx=
299 good-names=i,
311 # Include a hint for the correct naming format with invalid-name.
312 include-naming-hint=no
315 inlinevar-naming-style=any
318 # inlinevar-naming-style.
319 #inlinevar-rgx=
322 method-naming-style=snake_case
324 # Regular expression matching correct method names. Overrides method-naming-
326 #method-rgx=
329 module-naming-style=snake_case
331 # Regular expression matching correct module names. Overrides module-naming-
333 #module-rgx=
335 # Colon-delimited sets of names that determine each other's naming style when
337 name-group=
341 no-docstring-rgx=^_
345 # These decorators are taken in consideration only for invalid-name.
346 property-classes=abc.abstractproperty
349 variable-naming-style=snake_case
351 # Regular expression matching correct variable names. Overrides variable-
352 # naming-style.
353 #variable-rgx=
361 contextmanager-decorators=contextlib.contextmanager
366 generated-members=descriptor_pb2.*,plugin_pb2.*
370 ignore-mixin-members=yes
374 ignore-none=yes
376 # This flag controls whether pylint should warn about no-member and similar
379 # some branches might not be evaluated, which results in partial inference. In
380 # that case, it might be useful to still emit no-member and other checks for
382 ignore-on-opaque-inference=yes
387 ignored-classes=optparse.Values,
396 ignored-modules=*_pb2
400 missing-member-hint=yes
404 missing-member-hint-distance=1
408 missing-member-max-choices=1
411 signature-mutators=
417 max-args=10
420 max-attributes=11
423 max-bool-expr=5
426 max-branches=25
429 max-locals=25
432 max-parents=7
435 max-public-methods=25
438 max-returns=10
441 max-statements=100
444 min-public-methods=0
450 defining-attr-methods=__init__,
457 exclude-protected=_asdict,
464 valid-classmethod-first-arg=cls
467 valid-metaclass-classmethod-first-arg=cls
474 allow-any-import-level=
477 allow-wildcard-with-all=no
482 analyse-fallback-blocks=no
485 deprecated-modules=optparse,tkinter.tix
489 ext-import-graph=
493 import-graph=
497 int-import-graph=
501 known-standard-library=
504 known-third-party=enchant
507 preferred-modules=
514 overgeneral-exceptions=BaseException,