darsoarafa commited on
Commit
96a2759
·
verified ·
1 Parent(s): 3baced6

Create .flake8

Browse files
Files changed (1) hide show
  1. .flake8 +5 -0
.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