Spaces:
Runtime error
Runtime error
Create setup.cfg
Browse files
setup.cfg
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[flake8]
|
2 |
+
max_complexity=10
|
3 |
+
per-file-ignores=__init__.py:F401,F403
|
4 |
+
ignore = E203,W503
|
5 |
+
max-line-length=119
|
6 |
+
|
7 |
+
[isort]
|
8 |
+
profile=black
|
9 |
+
line_length=119
|
10 |
+
|
11 |
+
[mypy]
|
12 |
+
ignore_missing_imports = True
|