Skip to content

Commit 5b36b38

Browse files
committed
fix: correct Makefile syntax and variable usage in eslint rules
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent e04d9a1 commit 5b36b38

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/make/lib/lint/javascript/eslint.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ endif
6666
endif
6767

6868
# Append user-supplied command-line options:
69-
eslint_flags += ESLINT_FLAGS
69+
eslint_flags += $(ESLINT_FLAGS)
7070

7171
# RULES #
7272

@@ -256,6 +256,7 @@ ifeq ($(FAIL_FAST), true)
256256
echo ''; \
257257
echo "Linting file: $$file"; \
258258
$(ESLINT) $(eslint_flags) --config $(ESLINT_CONF) $$file || exit 1; \
259+
done
259260
else
260261
$(QUIET) status=0; \
261262
for file in $(FILES); do \

0 commit comments

Comments
 (0)