Spaces:
Runtime error
Runtime error
Commit
·
b903081
1
Parent(s):
1037d04
Upload flake8.txt
Browse files- flake8.txt +17 -0
flake8.txt
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[flake8]
|
| 2 |
+
ignore = E203, E266, E501, W503
|
| 3 |
+
max-line-length = 100
|
| 4 |
+
import-order-style = google
|
| 5 |
+
application-import-names = flake8
|
| 6 |
+
select = B,C,E,F,W,T4,B9
|
| 7 |
+
exclude =
|
| 8 |
+
.tox,
|
| 9 |
+
.git,
|
| 10 |
+
__pycache__,
|
| 11 |
+
docs,
|
| 12 |
+
sbatch,
|
| 13 |
+
.venv,
|
| 14 |
+
*.pyc,
|
| 15 |
+
*.egg-info,
|
| 16 |
+
.cache,
|
| 17 |
+
.eggs
|