Skip to content

Commit

Permalink
Revert "Add flake8 config"
Browse files Browse the repository at this point in the history
This reverts commit 3503c76.
  • Loading branch information
Sara Veldhoen committed Apr 12, 2024
1 parent 336b7d7 commit 41c51eb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# use .flake8 until we can move this config to pyproject.toml (not possible yet (27/02/2024) according to issue below)
# use .flake8 until we can move this config to pyproject.toml
# https://github.com/PyCQA/flake8/issues/234

[flake8]
Expand Down Expand Up @@ -37,6 +37,9 @@ extend-ignore =
# W503 line break before binary operator
W503,

# C901 too complex function (ignore temporarily)
C901,

# set max-line-length to be black compatible, as suggested in the black docs
# https://github.com/psf/black/blob/d038a24ca200da9dacc1dcb05090c9e5b45b7869/docs/the_black_code_style/current_style.md#line-length
max-line-length = 88
Expand All @@ -52,5 +55,3 @@ show-source = True

# count errors and warnings
statistics = True
exclude =
.venv

0 comments on commit 41c51eb

Please sign in to comment.