Skip to content

Commit 15447d8

Browse files
committed
fix: make lint using editorconfig-checker
1 parent 99e2826 commit 15447d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SHELL=/bin/bash
33
-include .env
44

55
STATIC_ANALYSIS_CHECKER := $(shell which shellcheck 2> /dev/null)
6-
LINTER_CHECKER := $(shell which ec 2> /dev/null)
6+
LINTER_CHECKER := $(shell which editorconfig-checker 2> /dev/null)
77
GIT_DIR = $(shell git rev-parse --git-dir 2> /dev/null)
88

99
OS:=
@@ -92,5 +92,5 @@ lint:
9292
ifndef LINTER_CHECKER
9393
@printf "\e[1m\e[31m%s\e[0m\n" "Editorconfig not installed: Lint not performed!" && exit 1
9494
else
95-
@ec -config .editorconfig && printf "\e[1m\e[32m%s\e[0m\n" "editorconfig-check: OK!"
95+
@editorconfig-checker && printf "\e[1m\e[32m%s\e[0m\n" "editorconfig-check: OK!"
9696
endif

0 commit comments

Comments
 (0)