Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ apply:
uv run ansible-playbook -i ~/.dotfiles/ansible/inventory.ini ~/.dotfiles/ansible/dotfiles.yml

fmt:
npx --yes prettier --write **/*.yml
npx --loglevel error --yes prettier --write **/*.yml
uvx mdformat --wrap 80 --number *.md
uvx ruff format --line-length=100 **/*.py
uvx ruff check --fix --line-length=100 **/*.py
npx --yes @johnnymorganz/stylua-bin -- **/*.lua
npx --loglevel error --yes @johnnymorganz/stylua-bin -- **/*.lua

fmt_check:
npx --yes prettier --check **/*.yml
npx --loglevel error --yes prettier --check **/*.yml
uvx mdformat --check --wrap 80 --number *.md
uvx ruff format --check --line-length=100 **/*.py
uvx ruff check --line-length=100 **/*.py
npx --yes @johnnymorganz/stylua-bin --check -- **/*.lua
npx --loglevel error --yes @johnnymorganz/stylua-bin --check -- **/*.lua

nvim-health:
nvim --headless "+checkhealth" +qa
Expand Down
Loading