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 61c3905 commit b5fe537Copy full SHA for b5fe537
pyproject.toml
@@ -168,6 +168,10 @@ extend-immutable-calls = [
168
convention = "numpy"
169
170
[tool.ruff.per-file-ignores]
171
+"py3dep/py3dep.py" = [
172
+ # specific type error ignored
173
+ "PGH003",
174
+]
175
"tests/*.py" = [
176
"D100",
177
"D101",
@@ -179,14 +183,8 @@ convention = "numpy"
179
183
"D107",
180
184
# use of "assert"
181
185
"S101",
182
- # use of "exec"
- "S102",
- # possible hardcoded password
- "S106",
186
- # use of "eval"
187
- "PGH001",
188
- # Mutable class attributes
189
- "RUF012",
190
]
191
192
[tool.ruff.isort]
0 commit comments