Skip to content

Commit

Permalink
chore: print blank line to ensure spacing with other build text
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Dec 17, 2024
1 parent 6d88acd commit c56bdf3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/make/lib/lint/editorconfig.mk
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ lint-editorconfig: $(NODE_MODULES)
$(QUIET) $(FIND_PACKAGES_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r pkg; do \
echo ''; \
echo "Linting package for basic formatting errors: $$pkg"; \
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; \
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; \
done

.PHONY: lint-editorconfig
Expand All @@ -83,6 +83,7 @@ lint-editorconfig-files: $(NODE_MODULES)
$(QUIET) cd "$(BUILD_DIR)/editorconfig-checker" && \
$(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 'Success. No detected EditorConfig lint errors.' && \
echo ''

.PHONY: lint-editorconfig-files

0 comments on commit c56bdf3

Please sign in to comment.