Skip to content

Commit 9b5dea2

Browse files
committed
feat: no ruff T201 (print statement) in ipynb
1 parent 2fda191 commit 9b5dea2

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,10 @@ ignore = [
147147

148148
[tool.ruff.lint.per-file-ignores]
149149
"__init__.py" = [
150-
"F401", # Ignore seemingly unused imports (they're meant for re-export)
150+
"F401", # Ignore seemingly unused imports (they're meant for re-export)
151+
]
152+
"*.ipynb" = [
153+
"T201", # ignore print statement in notebook
151154
]
152155
# Directories that do not contain s, r, and c
153156
"[!s][!r][!c]*/**" = ["INP001"] # Implicit namespace package (no __init__.py)

0 commit comments

Comments
 (0)