Spaces:
Running
Running
castledan
commited on
Commit
·
8843042
1
Parent(s):
8c5c1c6
update flake8 pre-commit config
Browse files
setup.cfg
CHANGED
@@ -1,7 +1,15 @@
|
|
1 |
[flake8]
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
[flake8]
|
2 |
+
max-pos-args = 3
|
3 |
+
ignore =
|
4 |
+
# Allow f-strings
|
5 |
+
SFS301,
|
6 |
+
# Allow print statements
|
7 |
+
T001,
|
8 |
+
# Allow implictly concatenated string literals in one line
|
9 |
+
ISC001,
|
10 |
+
# Allow percent operator in string
|
11 |
+
SFS101,
|
12 |
+
# Allow more than one # for comments
|
13 |
+
E266,
|
14 |
+
# Allow line break before binary operator
|
15 |
+
W503
|