mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +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]
|
||||
min-version = 3.6
|
||||
accept-encodings = utf-8
|
||||
max-line-length = 88
|
||||
docstring-convention = google
|
||||
# errors we ignore; see https://www.flake8rules.com/ for more info
|
||||
ignore =
|
||||
|
|
@ -26,6 +27,8 @@ ignore =
|
|||
C901,
|
||||
# Exception subclasses should be named with an Error suffix
|
||||
N818,
|
||||
# Exclude rule for black compatibility
|
||||
E203,
|
||||
per-file-ignores =
|
||||
./beet:D
|
||||
./docs/conf.py:D
|
||||
|
|
|
|||
Loading…
Reference in a new issue