.pylintrc: use symbolic names for message suppressions
This commit is contained in:
parent
ab307388f4
commit
2cdbddca09
1 changed files with 14 additions and 1 deletions
15
.pylintrc
15
.pylintrc
|
@ -3,7 +3,20 @@ ignore=migrations
|
||||||
load-plugins=pylint.extensions.no_self_use
|
load-plugins=pylint.extensions.no_self_use
|
||||||
|
|
||||||
[MESSAGES CONTROL]
|
[MESSAGES CONTROL]
|
||||||
disable=E1101,E1135,E1136,R0903,R0901,R0902,W0707,W0511,W0406,R0401,R0801,C3001,import-error
|
disable =
|
||||||
|
cyclic-import,
|
||||||
|
duplicate-code,
|
||||||
|
fixme,
|
||||||
|
import-error,
|
||||||
|
import-self,
|
||||||
|
no-member,
|
||||||
|
raise-missing-from,
|
||||||
|
too-few-public-methods,
|
||||||
|
too-many-ancestors,
|
||||||
|
too-many-instance-attributes,
|
||||||
|
unnecessary-lambda-assignment,
|
||||||
|
unsubscriptable-object,
|
||||||
|
unsupported-membership-test,
|
||||||
|
|
||||||
[FORMAT]
|
[FORMAT]
|
||||||
max-line-length=88
|
max-line-length=88
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue