File tree Expand file tree Collapse file tree 1 file changed +2
-16
lines changed Expand file tree Collapse file tree 1 file changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -9,23 +9,10 @@ install:
99 @echo " Installing dependencies..."
1010 uv sync --extra dev
1111
12- # Check if proto files need to be regenerated
13- proto-check :
14- @echo " Checking proto files..."
15- uv run python scripts/generate_proto.py
16- @if [ -n " $$ (git status --porcelain 2>&1)" ]; then \
17- echo " Warning: Proto files have changes. Please review and commit:" ; \
18- git status --porcelain; \
19- echo " " ; \
20- echo " To see the diff, run: git diff" ; \
21- exit 1; \
22- fi
23- @echo " Proto files are up to date"
24-
2512# Run linter
2613lint :
27- @echo " Running Ruff linter..."
28- uv tool run ruff check
14+ @echo " Running Ruff linter and fixing lint issues ..."
15+ uv tool run ruff check --fix
2916
3017# Run type checker
3118type-check :
5441 @echo " Available targets:"
5542 @echo " make pr - Run all PR checks (recommended before submitting PR)"
5643 @echo " make install - Install dependencies"
57- @echo " make proto-check - Check if proto files are up to date"
5844 @echo " make lint - Run Ruff linter"
5945 @echo " make type-check - Run mypy type checker"
6046 @echo " make test - Run unit tests"
You can’t perform that action at this time.
0 commit comments