Skip to content

Commit

Permalink
exclude presentations from linting
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed Nov 8, 2024
1 parent da4a483 commit 0c43d3b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[tool.black]
line-length = 88
exclude = ["presentations"]
target-version = ["py38", "py39", "py310", "py311", "py312"]

[tool.pyright]
exclude = ["**/node_modules", "**/__pycache__", "tests/old_*"]
exclude = ["**/node_modules", "**/__pycache__", "tests/old_*", "presentations"]
include = ["bioimageio", "scripts", "tests"]
pythonPlatform = "All"
pythonVersion = "3.8"
Expand Down Expand Up @@ -35,4 +36,5 @@ addopts = "--cov=bioimageio --cov-report=xml -n auto --capture=no --doctest-modu
[tool.ruff]
line-length = 88
include = ["*.py", "*.pyi", "**/pyproject.toml", "*.ipynb"]
exclude = ["presentations"]
target-version = "py38"

0 comments on commit 0c43d3b

Please sign in to comment.