Moving the goalposts

pull/387/head
Wyatt Stanke 1 year ago
parent f0c4dfc811
commit 4de8e5d51c
No known key found for this signature in database
GPG Key ID: CE6BA5FFF135536D

@ -0,0 +1,10 @@
[flake8]
max-line-length = 127
per-file-ignores =
# Most of this is just long strings
./swarms/prompts/**.py: E501 W293 W291
./swarms/__init__.py: F401
exclude =
./playground
./tests
./scripts

@ -0,0 +1,10 @@
exclude = ["./playground", "./tests", "./scripts"]
line-length = 127
[lint]
ignore = []
select = ["E", "F", "W"]
[lint.per-file-ignores]
"./swarms/prompts/**.py" = ["E501", "W291", "W293"]
"./swarms/__init__.py" = ["F401"]
Loading…
Cancel
Save