Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"charliermarsh.ruff",
"tamasfe.even-better-toml",
]
}
}
13 changes: 12 additions & 1 deletion pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ test = [
"ruff>=0.5.0,<=0.14.10",
"coverage>=7.5.4,<=7.13.1",
"pre-commit<=4.5.1",
"ty<=0.1.0",
]

[build-system]
Expand All @@ -67,7 +68,8 @@ format = "ruff format ."
check-clean-workspace = "git diff --exit-code"
ruff-lint = "ruff check . --fix"
pylint = "pylint --version && echo 'running pylint...' && pylint $(git ls-files '*.py')"
lint = { depends-on = ["ruff-lint", "pylint"] }
ty = "ty check"
lint = { depends-on = ["ruff-lint", "pylint", "ty"] }
style = { depends-on = ["format", "lint"] }
commit-format = "git commit -a -m'autoformat code' || true"
test = "pytest"
Expand All @@ -83,6 +85,7 @@ ci = { depends-on = [
"format",
"ruff-lint",
"pylint",
"ty",
"coverage",
"coverage-report",
] }
Expand Down