Skip to content

Commit 984da3c

Browse files
committed
Adjust flake8 config to be like other jupyterhub projects
1 parent 51cb36d commit 984da3c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.flake8

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
# E: style errors
44
# W: style warnings
55
# C: complexity
6-
# E402: module level import not at top of file
7-
# I100: Import statements are in the wrong order
8-
# I101: Imported names are in the wrong order. Should be
9-
ignore = E, C, W, E402, I100, I101, D400
6+
# D: docstring warnings (unused pydocstyle extension)
7+
# F841: local variable assigned but never used
8+
ignore = E, C, W, D, F841
109
exclude =
1110
.cache,
1211
.github

0 commit comments

Comments
 (0)