Skip to content

Commit

Permalink
Adjust flake8 config to be like other jupyterhub projects
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Jan 4, 2023
1 parent 51cb36d commit 984da3c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
# E: style errors
# W: style warnings
# C: complexity
# E402: module level import not at top of file
# I100: Import statements are in the wrong order
# I101: Imported names are in the wrong order. Should be
ignore = E, C, W, E402, I100, I101, D400
# D: docstring warnings (unused pydocstyle extension)
# F841: local variable assigned but never used
ignore = E, C, W, D, F841
exclude =
.cache,
.github

0 comments on commit 984da3c

Please sign in to comment.