From f584c7b80b7a06368da17f1727ff2477da01e2f9 Mon Sep 17 00:00:00 2001 From: Daniel Bluhm Date: Mon, 4 Apr 2022 11:27:52 -0400 Subject: [PATCH] revert: "chore: revert addition of setup.cfg with flake8" This reverts commit a18d7ec5bee59cc49158d411e343374d547ef4d8. Turns out there are conflicting options for flake8 that must be handled for it to pass. Signed-off-by: Daniel Bluhm --- setup.cfg | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 000000000..8fdac0567 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,7 @@ +[flake8] +# https://github.com/ambv/black#line-length +max-line-length = 90 +exclude = + */tests/** +extend_ignore = D202, W503 +per_file_ignores = */__init__.py:D104