Skip to content

Commit 55bd1a4

Browse files
DEV: update Makefile
1 parent d3061d0 commit 55bd1a4

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

Makefile

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,21 @@ install:
2424
pip install -e .
2525

2626
format:
27-
ruff check --select I --fix rocketpy/ tests/ docs/
28-
ruff format rocketpy/ tests/ docs/
27+
@ruff check --select I --fix rocketpy/ tests/ docs/
28+
@ruff format rocketpy/ tests/ docs/
29+
@echo Ruff formatting completed.
2930

3031
lint: ruff-lint pylint
3132

3233
ruff-lint:
33-
ruff check rocketpy/ tests/ docs/ --output-file=.ruff-report.txt
34+
@echo Running ruff check...
35+
@ruff check rocketpy/ tests/ docs/ --output-file=.ruff-report.txt
36+
@echo Ruff report generated at ./.ruff-report.txt
3437

3538
pylint:
36-
-pylint rocketpy/ tests/ docs/ --output=.pylint-report.txt
39+
@echo Running pylint check...
40+
@pylint rocketpy/ tests/ docs/ --output=.pylint-report.txt
41+
@echo Pylint report generated at ./.pylint-report.txt
3742

3843
build-docs:
3944
cd docs && $(PYTHON) -m pip install -r requirements.txt && make html

0 commit comments

Comments
 (0)