Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 justfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ clean-builds:

lint:
{{PYTHON}} -m ruff check .
{{PYTHON}} -m pyright .
{{PYTHON}} -m ty check --error-on-warning .

fmt:
{{PYTHON}} -m ruff format .
Expand Down
11 changes: 2 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,7 @@ classifiers = [
dynamic = ["version"]

[project.optional-dependencies]
dev = ["pytest>=7.4.4", "ruff==0.15.11", "pyright>=1.1.293", "build"]

[tool.pyright]
include = ["src", "tests"]
pythonVersion = "3.10"
typeCheckingMode = "strict"
dev = ["pytest>=7.4.4", "ruff==0.15.11", "ty>=0.0.32", "build"]

[tool.ruff]
line-length = 120
Expand All @@ -56,9 +51,7 @@ select = [
"RUF100",
]
ignore = [
"E501", # line too long, duplicate with ruff fmt
"F401", # imported but unused, duplicate with pyright
"F841", # local variable is assigned to but never used, duplicate with pyright
"E501", # line too long, duplicate with ruff format
]

[tool.ruff.lint.isort]
Expand Down