mirror of
https://github.com/beetbox/beets.git
synced 2025-12-07 09:04:33 +01:00
Make flake8 black compatible
This commit is contained in:
parent
383fd9a612
commit
15d7d2a7f6
1 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue