From 0bf234b2c282c7f459c0c6c46764dfb498f1a3b8 Mon Sep 17 00:00:00 2001 From: Guangya Liu Date: Fri, 27 Dec 2024 13:34:58 -0500 Subject: [PATCH] [chore] Enbled make fix can fix table format (#1699) Signed-off-by: Guangya Liu Co-authored-by: Liudmila Molkova --- Makefile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Makefile b/Makefile index e4ed069cc..813a09c63 100644 --- a/Makefile +++ b/Makefile @@ -172,18 +172,10 @@ table-check: schema-check: $(TOOLS_DIR)/schema_check.sh -.PHONY: check-format -check-format: - npm run check:format - -.PHONY: fix-format -fix-format: - npm run fix:format - # Run all checks in order of speed / likely failure. # As a last thing, run attribute registry generation and git-diff for differences. .PHONY: check -check: misspell markdownlint check-format markdown-toc markdown-link-check check-policies attribute-registry-generation +check: misspell markdownlint markdown-toc markdown-link-check check-policies attribute-registry-generation git diff --exit-code ':*.md' || (echo 'Generated markdown Table of Contents is out of date, please run "make markdown-toc" and commit the changes in this PR.' && exit 1) @echo "All checks complete"