aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Xithrius <[email protected]>2024-02-01 23:09:49 -0800
committerGravatar Xithrius <[email protected]>2024-02-01 23:09:49 -0800
commit5cd802be1da397c448898c6aab1c3bebc2e417e3 (patch)
tree7aab5eb4512fd7d322112d915ced1b9e41e0c946
parentBump ruff from 0.1.15 to 0.2.0 (diff)
Appeased the linter
-rw-r--r--pydis_site/apps/content/utils.py2
-rw-r--r--pyproject.toml6
2 files changed, 5 insertions, 3 deletions
diff --git a/pydis_site/apps/content/utils.py b/pydis_site/apps/content/utils.py
index 9c949a93..5a146e10 100644
--- a/pydis_site/apps/content/utils.py
+++ b/pydis_site/apps/content/utils.py
@@ -107,7 +107,7 @@ def fetch_tags() -> list[Tag]:
for file in repo.getmembers():
if "/bot/resources/tags" in file.path:
included.append(file)
- repo.extractall(folder, included)
+ repo.extractall(folder, included) # noqa: S202
for tag_file in Path(folder).rglob("*.md"):
name = tag_file.name
diff --git a/pyproject.toml b/pyproject.toml
index 334ad4e4..32acf064 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -44,6 +44,9 @@ build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py311"
extend-exclude = [".cache"]
+line-length = 120
+
+[tool.ruff.lint]
ignore = [
"ANN002", "ANN003", "ANN101", "ANN102", "ANN204", "ANN206", "ANN401",
"B904",
@@ -57,10 +60,9 @@ ignore = [
"S311",
"SIM102", "SIM108",
]
-line-length = 120
select = ["ANN", "B", "C4", "D", "DJ", "DTZ", "E", "F", "ISC", "INT", "N", "PGH", "PIE", "RET", "RSE", "RUF", "S", "SIM", "T20", "TID", "UP", "W"]
-[tool.ruff.per-file-ignores]
+[tool.ruff.lint.per-file-ignores]
"pydis_site/apps/**/migrations/*.py" = ["ALL"]
"manage.py" = ["T201"]
"pydis_site/apps/api/tests/base.py" = ["S106"]