Skip to content

Commit 4ed32f4

Browse files
authored
Merge pull request #8894 from jandubois/shfmt
Explicitly specify shfmt indent
2 parents 3d31c64 + 6e3dadd commit 4ed32f4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

bats/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ lint:
1919
find tests -name '*.bash' | xargs shellcheck -s bash -e $(SC_EXCLUDES)
2020
find tests -name '*.bats' | xargs shellcheck -s bash -e $(SC_EXCLUDES)
2121
find scripts -name '*.sh' | xargs shellcheck -s bash -e $(SC_EXCLUDES)
22-
find tests -name '*.bash' | xargs shfmt -s -d
23-
find tests -name '*.bats' | xargs shfmt -s -d
24-
find scripts -name '*.sh' | xargs shfmt -s -d
22+
find tests -name '*.bash' | xargs shfmt --simplify --diff --indent 4
23+
find tests -name '*.bats' | xargs shfmt --simplify --diff --indent 4
24+
find scripts -name '*.sh' | xargs shfmt --simplify --diff --indent 4
2525

2626
DEPS = bin/darwin/jq bin/linux/jq
2727

0 commit comments

Comments
 (0)