File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ make install-dev
2727``` bash
2828make lint # Check code with ruff linter
2929make lint-fix # Auto-fix linting issues
30- make format # Format code with ruff
30+ make format # Format code with ruff and stylua
3131make format-md # Format markdown files
3232make typecheck # Run type checker
3333make quality # Run all quality checks
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ PYTHON := python3
1313UV := uv
1414PYTEST := pytest
1515RUFF := ruff
16+ STYLUA := stylua
1617TYPECHECK := basedpyright
1718MKDOCS := mkdocs
1819MDFORMAT := mdformat
@@ -51,6 +52,8 @@ format: ## Run ruff formatter
5152 @echo " $( YELLOW) Running ruff formatter...$( RESET) "
5253 $(RUFF ) check --select I --fix .
5354 $(RUFF ) format .
55+ @echo " $( YELLOW) Running stylua formatter...$( RESET) "
56+ $(STYLUA ) src/lua
5457
5558format-md : # # Run markdown formatter
5659 @echo " $( YELLOW) Running markdown formatter...$( RESET) "
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ make install-dev # Install with development dependencies
129129```bash
130130make lint # Run ruff linter (check only)
131131make lint-fix # Run ruff linter with auto-fixes
132- make format # Run ruff formatter
132+ make format # Run ruff formatter and stylua
133133make format-md # Run markdown formatter
134134make typecheck # Run type checker
135135make quality # Run all code quality checks
You can’t perform that action at this time.
0 commit comments