Make flake8 black compatible

This commit is contained in:
Serene-Arc 2023-09-24 13:16:10 +10:00
parent 383fd9a612
commit 15d7d2a7f6

View file

@ -1,6 +1,7 @@
[flake8] [flake8]
min-version = 3.6 min-version = 3.6
accept-encodings = utf-8 accept-encodings = utf-8
max-line-length = 88
docstring-convention = google docstring-convention = google
# errors we ignore; see https://www.flake8rules.com/ for more info # errors we ignore; see https://www.flake8rules.com/ for more info
ignore = ignore =
@ -26,6 +27,8 @@ ignore =
C901, C901,
# Exception subclasses should be named with an Error suffix # Exception subclasses should be named with an Error suffix
N818, N818,
# Exclude rule for black compatibility
E203,
per-file-ignores = per-file-ignores =
./beet:D ./beet:D
./docs/conf.py:D ./docs/conf.py:D