From 15d7d2a7f6f305d1fe005f80f8b9059a48aeff2f Mon Sep 17 00:00:00 2001 From: Serene-Arc <33189705+Serene-Arc@users.noreply.github.com> Date: Sun, 24 Sep 2023 13:16:10 +1000 Subject: [PATCH] Make flake8 black compatible --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 6a03ced6e..2e91dbdbd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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