Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Pennebaker committed Jan 3, 2024
1 parent 2ac01e9 commit 133af92
Showing 1 changed file with 26 additions and 19 deletions.
45 changes: 26 additions & 19 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
.SILENT:
.PHONY: all \
audit \
bashate \
funk \
lint \
safety \
shellcheck \
shfmt \
bashate \
funk \
slick \
shellcheck \
snyk \
unmake \
yamllint
Expand All @@ -17,39 +17,46 @@ all: lint

audit: safety snyk

bashate:
stank -exInterp zsh . | \
grep -v .sample | \
xargs -n 1 bashate -i E006

funk:
funk .

lint: \
bashate \
funk \
shellcheck \
shfmt \
slick \
unmake \
yamllint

safety:
safety check

snyk:
snyk test
shellcheck:
stank -exInterp zsh . | \
grep -v .sample | \
xargs -n 1 shellcheck

shfmt:
stank -exInterp zsh . | \
grep -v .sample | \
xargs -n 1 shfmt -w -i 4

bashate:
stank . | \
grep -v .sample | \
xargs -n 1 bashate -i E006

funk:
funk .

slick:
stank -sh . | \
grep -v .sample | \
xargs -n 1 slick

shellcheck:
stank -exInterp zsh . | \
grep -v .sample | \
xargs -n 1 shellcheck
snyk:
snyk test

unmake:
unmake .

yamllint:
yamllint -s .yamllint .

lint: shfmt funk slick shellcheck unmake yamllint

0 comments on commit 133af92

Please sign in to comment.