From 627750eded45a81d2d2b841a641a009c8022b365 Mon Sep 17 00:00:00 2001 From: Martin Kristiansen Date: Sat, 16 Sep 2023 11:47:05 -0400 Subject: [PATCH] Adding excludes to flake8 config --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 63ac3b7c12..2ea5455c3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -198,6 +198,13 @@ output = "coverage/index.xml" max-line-length = 120 ignore = ["E203", "E266", "E501", "W503"] select = ["B", "C", "E", "F", "W", "T4"] +exclude = [ + ".git", + "__pycache__", + "build", + "dist", + "invokeai/frontend/web/node_modules/" +] [tool.black] line-length = 120