2021-07-08 00:31:12 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2023-04-26 10:49:44 +00:00
|
|
|
# Check editorconfig
|
2023-07-13 14:59:22 +00:00
|
|
|
if ! editorconfig-checker; then
|
|
|
|
printf "%b\n" \
|
|
|
|
"\nCode is not aligned with .editorconfig" \
|
|
|
|
"Review the output and commit your fixes" >&2
|
|
|
|
exit 1
|
2021-07-08 00:31:12 +00:00
|
|
|
fi
|