summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorBharath Vignesh J K <52282402+RazCrimson@users.noreply.github.com>2024-05-17 04:17:33 +0530
committerBharath Vignesh J K <52282402+RazCrimson@users.noreply.github.com>2024-05-17 04:17:33 +0530
commit14efbac82d63572d0666353ca503e0fb6e645672 (patch)
tree1ac97f2df2f826fcaa29ed40500a25ca3d25ba50 /pyproject.toml
parent00c662f8704ab21424feb4e1e8620b7d8e840fd4 (diff)
chore: remove older lint configs
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 37c78c2f..2380aff3 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -13,6 +13,9 @@ quote-style = "preserve"
[tool.ruff.lint]
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
select = [
+# "A",
+# "B",
+# "S",
"C90", # mccabe
"E", # pycodestyle
"F", # Pyflakes
@@ -22,6 +25,7 @@ select = [
"UP", # pyupgrde
"C4", # flake8-comprehensions
"RET", # flake8-return
+# "PL",
# "FBT", # flake8-boolean-trap
# "RUF", # Ruff-specific rules
# "PERF", # Perflint