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 d1d65ee commit d0b2527Copy full SHA for d0b2527
pyproject.toml
@@ -165,7 +165,11 @@ ignore = [
165
# don't allow implicit string concatenation
166
flake8-implicit-str-concat = {"allow-multiline" = false}
167
168
-# disallow things that have caused problems
+# ban debug and usually-a-bug imports in `trimesh` core library
169
+[tool.ruff.lint.per-file-ignores]
170
+"examples/*" = ["TID251"]
171
+"tests/*" = ["TID251"]
172
+
173
[tool.ruff.lint.flake8-tidy-imports.banned-api]
174
"IPython.embed".msg = "you forgot to remove a debug embed ;)"
175
"matplotlib".msg = "you forgot to remove a debug plot"
0 commit comments