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 99e2826 commit 15447d8Copy full SHA for 15447d8
Makefile
@@ -3,7 +3,7 @@ SHELL=/bin/bash
3
-include .env
4
5
STATIC_ANALYSIS_CHECKER := $(shell which shellcheck 2> /dev/null)
6
-LINTER_CHECKER := $(shell which ec 2> /dev/null)
+LINTER_CHECKER := $(shell which editorconfig-checker 2> /dev/null)
7
GIT_DIR = $(shell git rev-parse --git-dir 2> /dev/null)
8
9
OS:=
@@ -92,5 +92,5 @@ lint:
92
ifndef LINTER_CHECKER
93
@printf "\e[1m\e[31m%s\e[0m\n" "Editorconfig not installed: Lint not performed!" && exit 1
94
else
95
- @ec -config .editorconfig && printf "\e[1m\e[32m%s\e[0m\n" "editorconfig-check: OK!"
+ @editorconfig-checker && printf "\e[1m\e[32m%s\e[0m\n" "editorconfig-check: OK!"
96
endif
0 commit comments