Skip to content

Commit 70c7abc

Browse files
committed
chore(Makefile): update Makefile to include lint-fix target and improve check dependencies
feat(Makefile): add ruff check with --fix option to format step for better code quality refactor(Makefile): remove format from check target to streamline the process and ensure clarity
1 parent 886c978 commit 70c7abc

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Makefile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,21 @@ test:
66
format:
77
black .
88
isort .
9+
ruff check --fix .
10+
911

1012
lint:
13+
black --check .
14+
isort --check .
1115
ruff check .
1216

17+
lint-fix:
18+
ruff check --fix .
19+
1320
typecheck:
1421
mypy mcp_shell_server tests
1522

1623
# Run all checks required before pushing
17-
check: format lint typecheck test
24+
check: lint typecheck test
25+
26+
all: check test format

0 commit comments

Comments
 (0)