Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 7, 2023
1 parent 87380dd commit 83d8125
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ test-coverage:
./e2e/run_all_tests
if [[ "${TEST_TRANCHE:-}" == 0 ]]; then
rtx trust
just pre-commit: render-help render-completions render-mangen
just render-help render-completions render-mangen
rtx implode
elif [[ "${TEST_TRANCHE:-}" == 1 ]]; then
rtx trust
Expand All @@ -88,7 +88,7 @@ lint:
shellcheck -x {{ scripts }}
shfmt -d {{ scripts }}
just --unstable --fmt --check
prettier -c $(git ls-files '*.md' '*.yml' '*.yaml')
npx prettier -c $(git ls-files '*.md' '*.yml' '*.yaml')

# runs linters but makes fixes when possible
lint-fix:
Expand All @@ -97,7 +97,7 @@ lint-fix:
shellcheck -x {{ scripts }}
shfmt -w {{ scripts }}
just --unstable --fmt
prettier -w $(git ls-files '*.md' '*.yml' '*.yaml')
npx prettier -w $(git ls-files '*.md' '*.yml' '*.yaml')

# regenerate README.md
render-help: build
Expand Down

0 comments on commit 83d8125

Please sign in to comment.