Updated basedpyright and ruff rules to avoid overlap

This commit is contained in:
Daveanand Mannie
2024-09-13 14:50:31 -04:00
parent 3c046f11ad
commit 5c73dbf5ae
2 changed files with 4 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
{
"reportUnusedVariable": false
"reportUnusedVariable": false,
"reportUnusedImport": false
}

View File

@@ -56,7 +56,8 @@ select = [
# flake8-annotations
"ANN",
# pylint
"PL"
"PL",
"ARG"
]
ignore = [
"N812",