Adding excludes to flake8 config

This commit is contained in:
Martin Kristiansen 2023-09-16 11:47:05 -04:00 committed by psychedelicious
parent d94d4ef83f
commit 627750eded

View File

@ -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