We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4bfdd5 commit fb817f1Copy full SHA for fb817f1
setup.cfg
@@ -1,3 +1,9 @@
1
[flake8]
2
-ignore = E111,E114
+ignore = E111,E114,E902
3
max-complexity = 10
4
+
5
+# Notes:
6
+# - E902 is dissabled to prevent IO errors. The automated tests generate a list
7
+# of files that were changed (added, removed and edited) and runs the flake8
8
+# on those. Disabling this error will prevent false negative tests when a
9
+# python file has been removed.
0 commit comments