We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04c7b52 commit d635567Copy full SHA for d635567
buildkite/Makefile
@@ -5,9 +5,11 @@ check_syntax:
5
find ./src/ -name "*.dhall" -print0 | xargs -I{} -0 -n1 bash -c 'echo "{}" && dhall --file {} > /dev/null || exit 255'
6
7
check_lint:
8
+ @echo "Dhall version: $$(dhall --version)"
9
find ./src/ -name "*.dhall" -print0 | xargs -I{} -0 -n1 bash -c 'echo "{}" && dhall --ascii lint --check --inplace {} || exit 255'
10
11
check_format:
12
13
find ./src/ -name "*.dhall" -print0 | xargs -I{} -0 -n1 bash -c 'echo "{} format" && dhall --ascii format --check --inplace {} || exit 255'
14
15
lint:
0 commit comments