From aa29cc9a2b178fd68dd98f00d5fc964d94d0c8e6 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Wed, 5 Jun 2024 11:19:49 -0700 Subject: [PATCH] no pylint verbose report --- .pylintrc | 225 +----------------------------------------------------- 1 file changed, 1 insertion(+), 224 deletions(-) diff --git a/.pylintrc b/.pylintrc index 96e4c8b0bcede..46c5cf207176c 100644 --- a/.pylintrc +++ b/.pylintrc @@ -80,229 +80,6 @@ disable= line-too-long, unspecified-encoding, too-many-instance-attributes # re-enable once this no longer raises false positives - assigning-non-slot, - await-outside-async, - bad-configuration-section, - bad-format-character, - bad-plugin-value, - bad-str-strip-call, - bad-string-format-type, - bidirectional-unicode, - broken-collections-callable, - broken-noreturn, - continue-in-finally, - duplicate-argument-name, - duplicate-bases, - format-needs-mapping, - function-redefined, - init-is-generator, - invalid-all-format, - invalid-all-object, - invalid-bool-returned, - invalid-bytes-returned, - invalid-character-backspace, - invalid-character-esc, - invalid-character-nul, - invalid-character-sub, - invalid-character-zero-width-space, - invalid-hash-returned, - invalid-index-returned, - invalid-length-returned, - logging-too-few-args, - logging-too-many-args, - misplaced-bare-raise, - missing-format-string-key, - mixed-format-string, - modified-iterating-set, - no-self-argument, - nonexistent-operator, - nonlocal-and-global, - nonlocal-without-binding, - not-in-loop, - notimplemented-raised, - potential-index-error, - relative-beyond-top-level, - repeated-keyword, - return-arg-in-generator, - return-in-init, - return-outside-function, - singledispatch-method, - singledispatchmethod-function, - syntax-error, - too-few-format-args, - too-many-format-args, - too-many-star-expressions, - truncated-format-string, - undefined-all-variable, - undefined-variable, - unexpected-special-method-signature, - used-prior-global-declaration, - yield-inside-async-function, - yield-outside-function, - anomalous-backslash-in-string, - assert-on-string-literal, - assert-on-tuple, - bad-dunder-name, - bad-format-string, - bad-format-string-key, - bad-open-mode, - bad-staticmethod-argument, - bare-except, - binary-op-exception, - boolean-datetime, - broad-exception-caught, - broad-exception-raised, - cell-var-from-loop, - consider-ternary-expression, - dangerous-default-value, - duplicate-except, - duplicate-key, - duplicate-string-formatting-argument, - duplicate-value, - eq-without-hash, - eval-used, - exec-used, - expression-not-assigned, - f-string-without-interpolation, - fixme, - forgotten-debug-statement, - format-combined-specification, - format-string-without-interpolation, - global-at-module-level, - global-statement, - global-variable-not-assigned, - implicit-str-concat, - import-self, - inconsistent-quotes, - invalid-envvar-default, - keyword-arg-before-vararg, - logging-format-interpolation, - logging-fstring-interpolation, - logging-not-lazy, - lost-exception, - method-cache-max-size-none, - misplaced-future, - missing-format-argument-key, - named-expr-without-context, - nan-comparison, - nested-min-max, - non-ascii-file-name, - pointless-exception-statement, - pointless-statement, - protected-access, - raise-missing-from, - redefined-builtin, - redefined-loop-name, - redundant-u-string-prefix, - reimported, - self-assigning-variable, - subprocess-popen-preexec-fn, - subprocess-run-check, - super-without-brackets, - try-except-raise, - unknown-option-value, - unnecessary-lambda, - unnecessary-pass, - unnecessary-semicolon, - unspecified-encoding, - unused-argument, - unused-format-string-argument, - unused-format-string-key, - unused-import, - unused-variable, - useless-else-on-loop, - useless-with-lock, - using-f-string-in-unsupported-version, - wildcard-import, - bad-classmethod-argument, - bad-docstring-quotes, - compare-to-empty-string, - consider-iterating-dictionary, - consider-using-any-or-all, - docstring-first-line-empty, - empty-docstring, - import-outside-toplevel, - import-private-name, - invalid-name, - line-too-long, - misplaced-comparison-constant, - missing-class-docstring, - missing-final-newline, - missing-function-docstring, - missing-module-docstring, - multiple-imports, - multiple-statements, - non-ascii-module-import, - non-ascii-name, - single-string-used-for-slots, - singleton-comparison, - trailing-whitespace, - typevar-double-variance, - typevar-name-incorrect-variance, - typevar-name-mismatch, - ungrouped-imports, - unidiomatic-typecheck, - unnecessary-direct-lambda-call, - unnecessary-dunder-call, - unnecessary-lambda-assignment, - unneeded-not, - use-sequence-for-iteration, - useless-import-alias, - wrong-import-order, - wrong-import-position, - comparison-of-constants, - comparison-with-itself, - consider-alternative-union-syntax, - consider-merging-isinstance, - consider-using-alias, - consider-using-augmented-assign, - consider-using-dict-comprehension, - consider-using-generator, - consider-using-get, - consider-using-in, - consider-using-min-builtin, - consider-using-max-builtin, - consider-using-set-comprehension, - consider-using-sys-exit, - consider-using-ternary, - consider-using-with, - else-if-used, - empty-comment, - inconsistent-return-statements, - literal-comparison, - magic-value-comparison, - no-classmethod-decorator, - no-else-break, - no-else-continue, - no-else-raise, - no-else-return, - no-self-use, - no-staticmethod-decorator, - property-with-parameters, - redefined-argument-from-local, - simplifiable-if-expression, - simplifiable-if-statement, - super-with-arguments, - too-complex, - too-many-arguments, - too-many-boolean-expressions, - too-many-branches, - too-many-locals, - too-many-nested-blocks, - too-many-public-methods, - too-many-return-statements, - too-many-statements, - trailing-comma-tuple, - unnecessary-comprehension, - unnecessary-dict-index-lookup, - unnecessary-list-index-lookup, - use-a-generator, - use-dict-literal, - use-list-literal, - use-set-for-membership, - useless-object-inheritance, - useless-option-value, - useless-return [REPORTS] @@ -312,7 +89,7 @@ disable= output-format=text # Tells whether to display a full report or only the messages -reports=yes +reports=no # Python expression which should return a note less than 10 (10 is the highest # note). You have access to the variables errors warning, statement which