We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ed6159e + 6d1b370 commit 5dff5d7Copy full SHA for 5dff5d7
1 file changed
.flake8
@@ -1,10 +1,11 @@
1
[flake8]
2
3
-ignore = E501, E701, E722
+max-line-length = 130
4
+ignore = E701, E722
5
6
per-file-ignores =
7
# __init__.py files are allowed to have unused imports and lines-too-long
8
*/__init__.py:F401
9
- # Unused imports are allowed on tests/package.py module and they must come after setting the current working directory.
10
- tests/package.py:F401, E402
+ # Unused imports are allowed in the tests/package.py module and they must come after setting the current working directory.
11
+ tests/package.py:F401, E402
0 commit comments