We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7c2da8 commit 982f0ecCopy full SHA for 982f0ec
tox.ini
@@ -71,6 +71,14 @@ ignore =
71
W503,
72
# line break after binary operator
73
W504,
74
+ # do not compare types, use isinstance()
75
+ E721,
76
+ # missing whitespace after ','
77
+ E231,
78
+ # line too long
79
+ E501,
80
+ # redefinition of unused name
81
+ F811,
82
83
per-file-ignores=
84
__init__.py: F401,
0 commit comments