File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ lint-editorconfig: $(NODE_MODULES)
57
57
$(QUIET ) $(FIND_PACKAGES_CMD ) | grep ' ^[\/]\|^[a-zA-Z]:[/\]' | while read -r pkg; do \
58
58
echo ' ' ; \
59
59
echo " Linting package for basic formatting errors: $$ pkg" ; \
60
- cd " $$ pkg" && ( $( NODE) $( EDITORCONFIG_CHECKER) $( EDITORCONFIG_CHECKER_CONF_FLAGS) --config $( EDITORCONFIG_CHECKER_CONF) && $( NODE) $( EDITORCONFIG_CHECKER) $( EDITORCONFIG_CHECKER_CONF_FLAGS) --config $( EDITORCONFIG_CHECKER_MARKDOWN_CONF) && echo ' Success. No detected EditorConfig lint errors.' && echo ' ' ) || exit 1; \
60
+ cd " $$ pkg" && ( $( NODE) $( EDITORCONFIG_CHECKER) $( EDITORCONFIG_CHECKER_CONF_FLAGS) --config $( EDITORCONFIG_CHECKER_CONF) && $( NODE) $( EDITORCONFIG_CHECKER) $( EDITORCONFIG_CHECKER_CONF_FLAGS) --config $( EDITORCONFIG_CHECKER_MARKDOWN_CONF) ./ && echo ' Success. No detected EditorConfig lint errors.' && echo ' ' ) || exit 1; \
61
61
done
62
62
63
63
.PHONY : lint-editorconfig
@@ -81,8 +81,8 @@ lint-editorconfig-files: $(NODE_MODULES)
81
81
$(QUIET ) $(MKDIR_RECURSIVE ) " $( BUILD_DIR) /editorconfig-checker"
82
82
$(QUIET ) echo $(FILES ) | tr ' ' ' \n' | $(TAR ) -cf - -T - | $(TAR ) -xf - -C " $( BUILD_DIR) /editorconfig-checker/"
83
83
$(QUIET ) cd " $( BUILD_DIR) /editorconfig-checker" && \
84
- $(NODE ) $(EDITORCONFIG_CHECKER ) $(EDITORCONFIG_CHECKER_CONF_FLAGS ) --config $(EDITORCONFIG_CHECKER_CONF ) && \
85
- $(NODE ) $(EDITORCONFIG_CHECKER ) $(EDITORCONFIG_CHECKER_CONF_FLAGS ) --config $(EDITORCONFIG_CHECKER_MARKDOWN_CONF ) && \
84
+ $(NODE ) $(EDITORCONFIG_CHECKER ) $(EDITORCONFIG_CHECKER_CONF_FLAGS ) --config $(EDITORCONFIG_CHECKER_CONF ) ./ && \
85
+ $(NODE ) $(EDITORCONFIG_CHECKER ) $(EDITORCONFIG_CHECKER_CONF_FLAGS ) --config $(EDITORCONFIG_CHECKER_MARKDOWN_CONF ) ./ && \
86
86
echo ' Success. No detected EditorConfig lint errors.' && \
87
87
echo ' '
88
88
You can’t perform that action at this time.
0 commit comments