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", "I",
# pep8-naming # pep8-naming
"N", "N",
# pycodestyle # flake8-annotations
# "D", "ANN",
# "TD", # pylint
"PL"
] ]
ignore = [ ignore = [
"N812", "N812",
"SIM108" "SIM108",
"ANN101",
"ANN201",
"ANN202",
"ANN205",
"ANN204"
] ]
# Allow fix for all enabled rules (when `--fix`) is provided. # Allow fix for all enabled rules (when `--fix`) is provided.