Update .pylintrc
This commit is contained in:
parent
bfe7036999
commit
94752d2c6a
10
.pylintrc
10
.pylintrc
@ -1,16 +1,22 @@
|
|||||||
[MESSAGES CONTROL]
|
[MESSAGES CONTROL]
|
||||||
disable=
|
disable=
|
||||||
bad-option-value,
|
bad-option-value,
|
||||||
cyclic-import, # This shoud be fixed
|
cyclic-import, # This should be fixed
|
||||||
duplicate-code,
|
duplicate-code,
|
||||||
fixme,
|
fixme,
|
||||||
import-outside-toplevel,
|
import-outside-toplevel,
|
||||||
line-too-long,
|
line-too-long,
|
||||||
|
no-init,
|
||||||
old-style-class,
|
old-style-class,
|
||||||
super-with-arguments,
|
|
||||||
too-few-public-methods,
|
too-few-public-methods,
|
||||||
too-many-arguments,
|
too-many-arguments,
|
||||||
too-many-branches,
|
too-many-branches,
|
||||||
too-many-instance-attributes,
|
too-many-instance-attributes,
|
||||||
too-many-locals,
|
too-many-locals,
|
||||||
too-many-public-methods,
|
too-many-public-methods,
|
||||||
|
too-many-statements,
|
||||||
|
use-maxsplit-arg,
|
||||||
|
consider-using-from-import,
|
||||||
|
|
||||||
|
super-with-arguments, # Python 2.7 compatibility
|
||||||
|
raise-missing-from, # Python 2.7 compatibility
|
Loading…
Reference in New Issue
Block a user