chore: don't check ignored scripts (#1851)
This commit is contained in:
parent
6a65a7f3f1
commit
aa22536723
6
Makefile
6
Makefile
|
@ -9,11 +9,11 @@ setup:
|
|||
|
||||
# https://google.github.io/styleguide/shellguide.html
|
||||
shell-format:
|
||||
shfmt -f . | xargs shfmt -i 2 -ci -sr -kp -w
|
||||
shfmt -f . | xargs git ls-files | xargs shfmt -i 2 -ci -sr -kp -w
|
||||
|
||||
shell-check:
|
||||
shfmt -f . | xargs shfmt -i 2 -ci -sr -kp -d
|
||||
shfmt -f . | xargs shellcheck --color=always --severity=$${SEVERITY:-style}
|
||||
shfmt -f . | xargs git ls-files | xargs shfmt -i 2 -ci -sr -kp -d
|
||||
shfmt -f . | xargs git ls-files | xargs shellcheck --color=always --severity=$${SEVERITY:-style}
|
||||
|
||||
VERSION:
|
||||
tools/version.sh
|
||||
|
|
Loading…
Reference in New Issue