We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c89224 commit b0673faCopy full SHA for b0673fa
‎pyproject.toml
@@ -142,9 +142,6 @@ version_tuple = {version_tuple!r}
142
"__dlpack_device__",
143
]
144
145
- [tool.ruff.lint.per-file-ignores]
146
- "tests/*.py" = ["ANN201", "D1", "S101"]
147
-
148
[tool.ruff.lint.flake8-import-conventions]
149
banned-from = ["array_api_typing"]
150
‎tests/.ruff.toml
@@ -2,5 +2,8 @@ extend = "../pyproject.toml"
2
3
[lint]
4
extend-ignore = [
5
+ "ANN201", # https://docs.astral.sh/ruff/rules/missing-return-type-undocumented-public-function/
6
+ "D1", # https://docs.astral.sh/ruff/rules/#pydocstyle-d
7
"INP001", # https://docs.astral.sh/ruff/rules/implicit-namespace-package/
8
+ "S101", # https://docs.astral.sh/ruff/rules/assert/
9
0 commit comments