Skip to content

Commit 2f1657d

Browse files
committed
chore(Makefile): remove lint-fix target and update all target to improve clarity
chore(Makefile): rename target 'fix' to run checks and format for better organization
1 parent 70c7abc commit 2f1657d

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,10 @@ lint:
1414
isort --check .
1515
ruff check .
1616

17-
lint-fix:
18-
ruff check --fix .
19-
2017
typecheck:
2118
mypy mcp_shell_server tests
2219

2320
# Run all checks required before pushing
2421
check: lint typecheck test
25-
26-
all: check test format
22+
fix: check format
23+
all: check

0 commit comments

Comments
 (0)