castledan commited on
Commit
8843042
·
1 Parent(s): 8c5c1c6

update flake8 pre-commit config

Browse files
Files changed (1) hide show
  1. setup.cfg +14 -6
setup.cfg CHANGED
@@ -1,7 +1,15 @@
1
  [flake8]
2
- extend-ignore =
3
- SFS301 # Allow f-strings
4
- T001 # Allow print statements
5
- ISC001 # Allow implictly concatenated string literals in one line
6
- SFS101 # Allow percent operator in string
7
- E266 # Allow more than one # for comments
 
 
 
 
 
 
 
 
 
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