Browse Source
Related-Bug: #1910543 Change-Id: I8cba98b97ebb6d18fce84c86cceb5c30b93dd194changes/22/769922/1
4 changed files with 87 additions and 2 deletions
@ -0,0 +1,79 @@
|
||||
[MESSAGES CONTROL] |
||||
|
||||
disable = |
||||
# TODO(ssbarnea): remove temporary skips added during initial adoption: |
||||
arguments-differ, |
||||
assignment-from-no-return, |
||||
attribute-defined-outside-init, |
||||
broad-except, |
||||
consider-iterating-dictionary, |
||||
consider-merging-isinstance, |
||||
consider-using-dict-comprehension, |
||||
consider-using-in, |
||||
consider-using-set-comprehension, |
||||
dangerous-default-value, |
||||
deprecated-method, |
||||
duplicate-code, |
||||
expression-not-assigned, |
||||
fixme, |
||||
global-statement, |
||||
import-error, |
||||
import-outside-toplevel, |
||||
inconsistent-return-statements, |
||||
invalid-name, |
||||
line-too-long, |
||||
logging-format-interpolation, |
||||
logging-not-lazy, |
||||
lost-exception, |
||||
missing-class-docstring, |
||||
missing-function-docstring, |
||||
missing-module-docstring, |
||||
no-else-break, |
||||
no-else-continue, |
||||
no-else-raise, |
||||
no-else-return, |
||||
no-member, |
||||
no-self-use, |
||||
no-value-for-parameter, |
||||
protected-access, |
||||
raise-missing-from, |
||||
redefined-argument-from-local, |
||||
redefined-builtin, |
||||
redefined-outer-name, |
||||
reimported, |
||||
self-assigning-variable, |
||||
simplifiable-if-statement, |
||||
super-init-not-called, |
||||
super-with-arguments, |
||||
superfluous-parens, |
||||
too-few-public-methods, |
||||
too-many-ancestors, |
||||
too-many-arguments, |
||||
too-many-branches, |
||||
too-many-instance-attributes, |
||||
too-many-lines, |
||||
too-many-locals, |
||||
too-many-nested-blocks, |
||||
too-many-public-methods, |
||||
too-many-return-statements, |
||||
too-many-statements, |
||||
trailing-comma-tuple, |
||||
try-except-raise, |
||||
undefined-loop-variable, |
||||
ungrouped-imports, |
||||
unidiomatic-typecheck, |
||||
unnecessary-comprehension, |
||||
unnecessary-lambda, |
||||
unnecessary-pass, |
||||
unsubscriptable-object, |
||||
unused-argument, |
||||
unused-import, |
||||
unused-variable, |
||||
useless-else-on-loop, |
||||
useless-object-inheritance, |
||||
useless-super-delegation, |
||||
wrong-import-order, |
||||
wrong-import-position |
||||
|
||||
[REPORTS] |
||||
output-format = colorized |
Loading…
Reference in new issue