test(ruff): enabled E, C, disabled C901

This commit is contained in:
Seaswimmer 2024-02-14 10:59:10 -05:00
parent dd9e221e2d
commit e34d621e6d
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -65,7 +65,7 @@ exclude = [
]
# Same as Black.
line-length = 88
line-length = 300
indent-width = 4
# Assume Python 3.11
@ -76,7 +76,7 @@ target-version = "py311"
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = ["F", "W", "E", "C901"]
ignore = []
ignore = ["C901"]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]