We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6ae325a + 04f7e4c commit 3009a36Copy full SHA for 3009a36
1 file changed
.github/actions/check-file-format/check-file-format.sh
@@ -68,7 +68,7 @@ function main() {
68
;;
69
esac
70
71
- if command -v editorconfig > /dev/null 2>&1 && ! is-arg-true "${FORCE_USE_DOCKER:-false}"; then
+ if command -v editorconfig-checker > /dev/null 2>&1 && ! is-arg-true "${FORCE_USE_DOCKER:-false}"; then
72
filter="$filter" dry_run_opt="${dry_run_opt:-}" run-editorconfig-natively
73
else
74
filter="$filter" dry_run_opt="${dry_run_opt:-}" run-editorconfig-in-docker
@@ -90,7 +90,7 @@ function run-editorconfig-natively() {
90
[[ ${#files[@]} -eq 0 ]] && return 0
91
92
# shellcheck disable=SC2086
93
- editorconfig \
+ editorconfig-checker \
94
--exclude '.git/' $dry_run_opt "${files[@]}"
95
}
96
0 commit comments