Spaces:
No application file
No application file
Create .flake8
Browse files
.flake8
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[flake8]
|
| 2 |
+
max-line-length = 120
|
| 3 |
+
max-complexity = 20
|
| 4 |
+
# Ignore E501 line length error. Those that cannot be fixed by yapf automatically are usually not worth fixing.
|
| 5 |
+
ignore = E731, W504, W503, E501, E741, E203, E402, F824
|