Skip to content

Commit

Permalink
Merge pull request #276 from consideRatio/pr/update-flake8
Browse files Browse the repository at this point in the history
Update .flake8 config to match other jupyterhub repos
  • Loading branch information
consideRatio authored Sep 17, 2024
2 parents 7f901a1 + f7f9bf3 commit be66e54
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
[flake8]
# Adjustments to comply with black autoformatting as described here:
# https://black.readthedocs.io/en/latest/guides/using_black_with_other_tools.html#flake8
# flake8 is used for linting Python code setup to automatically run with
# pre-commit.
#
extend-ignore = E203, E501
max-line-length = 88

# Project specific adjustments
# ref: https://flake8.pycqa.org/en/latest/user/configuration.html
#

[flake8]
# Ignore style and complexity
# E: style errors
# W: style warnings
# C: complexity
# D: docstring warnings (unused pydocstyle extension)
ignore = E, C, W, D
builtins =
c
get_config

0 comments on commit be66e54

Please sign in to comment.