From b8fc7c4377c3db1c45ecc91e6bc6c025332aad3e Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Sun, 17 Aug 2025 22:43:13 -0400 Subject: [PATCH] Removed eslint from linting workflow --- .github/workflows/linting.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 87859879710..b6d47fd2020 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -64,7 +64,6 @@ jobs: - name: Evaluate for Errors env: BIOME_LINT_OUTCOME: ${{ steps.biome_lint.outcome }} - ESLINT_OUTCOME: ${{ steps.eslint.outcome }} DEPCRUISE_OUTCOME: ${{ steps.depcruise.outcome }} TYPECHECK_OUTCOME: ${{ steps.typecheck.outcome }} TYPECHECK_SCRIPTS_OUTCOME: ${{ steps.typecheck-scripts.outcome }} @@ -92,13 +91,11 @@ jobs: } print_result "Biome" "$BIOME_LINT_OUTCOME" - print_result "ESLint" "$ESLINT_OUTCOME" print_result "Depcruise" "$DEPCRUISE_OUTCOME" print_result "Typecheck" "$TYPECHECK_OUTCOME" print_result "Typecheck scripts" "$TYPECHECK_SCRIPTS_OUTCOME" if [[ "$BIOME_LINT_OUTCOME" != "success" || \ - "$ESLINT_OUTCOME" != "success" || \ "$DEPCRUISE_OUTCOME" != "success" || \ "$TYPECHECK_OUTCOME" != "success" || \ "$TYPECHECK_SCRIPTS_OUTCOME" != "success" ]]; then @@ -106,4 +103,4 @@ jobs: exit 1 fi - printf "$(green "✅ All checks passed!")\n" \ No newline at end of file + printf "$(green "✅ All checks passed!")\n"