Skip to content

Commit 1b879cf

Browse files
committed
minor
Signed-off-by: Tim Li <[email protected]>
1 parent 4d5992f commit 1b879cf

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

Makefile

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff 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
2613
lint:
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
3118
type-check:
@@ -54,7 +41,6 @@ help:
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"

0 commit comments

Comments
 (0)