File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -60,15 +60,16 @@ gen-protos = "uv run python scripts/gen_protos.py"
60
60
lint = [
61
61
{cmd = " uv run ruff check" },
62
62
{cmd = " uv run ruff format --check" },
63
- {ref = " lint-types" },
64
- {cmd = " uv run pyright" },
63
+ {ref = " lint-types-mypy " },
64
+ {ref = " lint-types- pyright" },
65
65
{ref = " lint-docs" },
66
66
]
67
67
bridge-lint = { cmd = " cargo clippy -- -D warnings" , cwd = " temporalio/bridge" }
68
68
# TODO(cretz): Why does pydocstyle complain about @overload missing docs after
69
69
# https://github.com/PyCQA/pydocstyle/pull/511?
70
70
lint-docs = " uv run pydocstyle --ignore-decorators=overload"
71
- lint-types = " uv run mypy --namespace-packages --check-untyped-defs ."
71
+ lint-types-mypy = " uv run mypy --namespace-packages --check-untyped-defs ."
72
+ lint-types-pyright = " uv run pyright"
72
73
run-bench = " uv run python scripts/run_bench.py"
73
74
test = " uv run pytest"
74
75
You can’t perform that action at this time.
0 commit comments