File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -24,16 +24,21 @@ install:
2424 pip install -e .
2525
2626format :
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
3031lint : ruff-lint pylint
3132
3233ruff-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
3538pylint :
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
3843build-docs :
3944 cd docs && $(PYTHON ) -m pip install -r requirements.txt && make html
You can’t perform that action at this time.
0 commit comments