We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fda191 commit 9b5dea2Copy full SHA for 9b5dea2
1 file changed
pyproject.toml
@@ -147,7 +147,10 @@ ignore = [
147
148
[tool.ruff.lint.per-file-ignores]
149
"__init__.py" = [
150
- "F401", # Ignore seemingly unused imports (they're meant for re-export)
+ "F401", # Ignore seemingly unused imports (they're meant for re-export)
151
+]
152
+"*.ipynb" = [
153
+ "T201", # ignore print statement in notebook
154
]
155
# Directories that do not contain s, r, and c
156
"[!s][!r][!c]*/**" = ["INP001"] # Implicit namespace package (no __init__.py)
0 commit comments