updated ruff config

This commit is contained in:
Daveanand Mannie
2024-09-05 13:30:59 -04:00
parent 078136af13
commit 2c885de707

View File

@@ -53,13 +53,19 @@ select = [
"I",
# pep8-naming
"N",
# pycodestyle
# "D",
# "TD",
# flake8-annotations
"ANN",
# pylint
"PL"
]
ignore = [
"N812",
"SIM108"
"SIM108",
"ANN101",
"ANN201",
"ANN202",
"ANN205",
"ANN204"
]
# Allow fix for all enabled rules (when `--fix`) is provided.