mirror of
https://github.com/jtesta/ssh-audit.git
synced 2024-11-22 02:21:40 +01:00
Added pylint exclusions.
This commit is contained in:
parent
1a5c0e7fad
commit
fa488e25a3
4
tox.ini
4
tox.ini
@ -101,13 +101,15 @@ disable =
|
|||||||
mixed-indentation,
|
mixed-indentation,
|
||||||
no-else-raise,
|
no-else-raise,
|
||||||
no-else-return,
|
no-else-return,
|
||||||
|
super-with-arguments, # Can be re-factored, at some point.
|
||||||
too-complex,
|
too-complex,
|
||||||
too-many-boolean-expressions,
|
too-many-boolean-expressions,
|
||||||
too-many-branches,
|
too-many-branches,
|
||||||
too-many-instance-attributes,
|
too-many-instance-attributes,
|
||||||
too-many-lines,
|
too-many-lines,
|
||||||
too-many-locals,
|
too-many-locals,
|
||||||
too-many-statements
|
too-many-statements,
|
||||||
|
unsubscriptable-object # This seems to be a local issue on the maintainer's machine only. Could be removed, perhaps, in Jan 2021.
|
||||||
max-complexity = 15
|
max-complexity = 15
|
||||||
max-args = 8
|
max-args = 8
|
||||||
max-locals = 20
|
max-locals = 20
|
||||||
|
Loading…
Reference in New Issue
Block a user