add example team (#107)

* add example team

* add checks
This commit is contained in:
Jack Gerrits
2024-06-24 10:36:10 -04:00
committed by GitHub
parent 0d697037a1
commit b3ef035e3e
8 changed files with 114 additions and 6 deletions

View File

@@ -55,7 +55,7 @@ check = [
"ruff format",
"ruff check --fix",
"pyright",
"mypy",
"mypy --non-interactive --install-types",
"pytest -n auto",
]
@@ -78,7 +78,7 @@ check = "sphinx-build --fail-on-warning docs/src docs/build"
[tool.ruff]
line-length = 120
fix = true
exclude = ["build", "dist", "my_project/__init__.py", "my_project/main.py"]
exclude = ["build", "dist"]
target-version = "py310"
include = ["src/**", "examples/*.py"]