Skip to content

Commit

Permalink
Add flake8 ignore for black compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
GDYendell committed Mar 11, 2024
1 parent 3b140a7 commit 2d4d73a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ extend-ignore = [
"E203", # See https://github.com/PyCQA/pycodestyle/issues/373
"F811", # support typing.overload decorator
"F722", # allow Annotated[typ, some_func("some string")]
"E701", # See: https://black.readthedocs.io/en/latest/guides/using_black_with_other_tools.html#e701-e704
]
max-line-length = 88 # Respect black's line length (default 88),
exclude = [".tox", "venv"]
Expand Down Expand Up @@ -113,8 +114,8 @@ skipsdist=True
# Don't create a virtualenv for the command, requires tox-direct plugin
direct = True
passenv = *
allowlist_externals =
pytest
allowlist_externals =
pytest
pre-commit
mypy
sphinx-build
Expand Down

0 comments on commit 2d4d73a

Please sign in to comment.