Skip to content

Commit b9eabdb

Browse files
committed
pre-commit flake
1 parent a687a72 commit b9eabdb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.flake8

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[flake8]
2+
# Ignore style and complexity
3+
# E: style errors
4+
# W: style warnings
5+
# C: complexity
6+
# F401: module imported but unused
7+
# F403: import *
8+
# F811: redefinition of unused `name` from line `N`
9+
# F841: local variable assigned but never used
10+
# E402: module level import not at top of file
11+
# I100: Import statements are in the wrong order
12+
# I101: Imported names are in the wrong order. Should be
13+
ignore = E, W, C, F401, F403, F811, F841, E402, I100, I101, D400

0 commit comments

Comments
 (0)