Skip to content

Commit c56bdf3

Browse files
committed
chore: print blank line to ensure spacing with other build text
1 parent 6d88acd commit c56bdf3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/make/lib/lint/editorconfig.mk

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ lint-editorconfig: $(NODE_MODULES)
5757
$(QUIET) $(FIND_PACKAGES_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r pkg; do \
5858
echo ''; \
5959
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.' ) || 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; \
6161
done
6262

6363
.PHONY: lint-editorconfig
@@ -83,6 +83,7 @@ lint-editorconfig-files: $(NODE_MODULES)
8383
$(QUIET) cd "$(BUILD_DIR)/editorconfig-checker" && \
8484
$(NODE) $(EDITORCONFIG_CHECKER) $(EDITORCONFIG_CHECKER_CONF_FLAGS) --config $(EDITORCONFIG_CHECKER_CONF) && \
8585
$(NODE) $(EDITORCONFIG_CHECKER) $(EDITORCONFIG_CHECKER_CONF_FLAGS) --config $(EDITORCONFIG_CHECKER_MARKDOWN_CONF) && \
86-
echo 'Success. No detected EditorConfig lint errors.'
86+
echo 'Success. No detected EditorConfig lint errors.' && \
87+
echo ''
8788

8889
.PHONY: lint-editorconfig-files

0 commit comments

Comments
 (0)