From d2371ef374e7589ef085750b3a4d314398834aea Mon Sep 17 00:00:00 2001 From: Noah Moroze Date: Wed, 25 Sep 2024 23:22:13 -0400 Subject: [PATCH] Replace tclint style checks with tclfmt in CI Signed-off-by: Noah Moroze --- .github/workflows/github-actions-lint-tcl.yml | 3 ++- tclint.toml | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-actions-lint-tcl.yml b/.github/workflows/github-actions-lint-tcl.yml index 1338667b0ff..f3ee24fe0b4 100644 --- a/.github/workflows/github-actions-lint-tcl.yml +++ b/.github/workflows/github-actions-lint-tcl.yml @@ -16,4 +16,5 @@ jobs: - name: Lint run: | - tclint . + tclfmt --check . + tclint --no-check-style . diff --git a/tclint.toml b/tclint.toml index e3ce675f3b4..5ecb7bf848e 100644 --- a/tclint.toml +++ b/tclint.toml @@ -36,7 +36,6 @@ ] ignore = [ - "spaces-in-braces", "unbraced-expr", ]