@@ -11,3 +11,23 @@ tag_prefix = ""
11
11
[flake8]
12
12
exclude = __init__.py,versioneer.py,s3fs/tests/
13
13
max-line-length = 95
14
+ ignore =
15
+ E20, # Extra space in brackets
16
+ E231,E241, # Multiple spaces around ","
17
+ E26, # Comments
18
+ E4, # Import formatting
19
+ E721, # Comparing types instead of isinstance
20
+ E731, # Assigning lambda expression
21
+ E121, # continuation line under-indented for hanging indent
22
+ E126, # continuation line over-indented for hanging indent
23
+ E127, # continuation line over-indented for visual indent
24
+ E128, # E128 continuation line under-indented for visual indent
25
+ E702, # multiple statements on one line (semicolon)
26
+ W503, # line break before binary operator
27
+ E129, # visually indented line with same indent as next logical line
28
+ E116, # unexpected indentation
29
+ F811, # redefinition of unused 'loop' from line 10
30
+ F841, # local variable is assigned to but never used
31
+ E741 # Ambiguous variable names
32
+ W504, # line break after binary operator
33
+
0 commit comments