From 4c7280954390dcaef8ec100be0f1682afe589292 Mon Sep 17 00:00:00 2001 From: bracesproul Date: Tue, 11 Mar 2025 13:39:28 -0700 Subject: [PATCH] cr --- .github/workflows/ci.yml | 8 ++++---- eslint.config.js | 5 ++++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c048257..2d87374 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,8 +29,8 @@ jobs: version: 10.5.1+sha512.c424c076bd25c1a5b188c37bb1ca56cc1e136fbf530d98bcb3289982a08fd25527b8c9c4ec113be5e3393c39af04521dd647bcf1d0801eaf8ac6a7b14da313af - uses: actions/setup-node@v4 with: - node-version: '18.x' - cache: 'pnpm' + node-version: "18.x" + cache: "pnpm" - name: Install dependencies run: pnpm install - name: Check formatting @@ -46,8 +46,8 @@ jobs: version: 10.5.1+sha512.c424c076bd25c1a5b188c37bb1ca56cc1e136fbf530d98bcb3289982a08fd25527b8c9c4ec113be5e3393c39af04521dd647bcf1d0801eaf8ac6a7b14da313af - uses: actions/setup-node@v4 with: - node-version: '18.x' - cache: 'pnpm' + node-version: "18.x" + cache: "pnpm" - name: Install dependencies run: pnpm install - name: Check linting diff --git a/eslint.config.js b/eslint.config.js index cea0409..af6a2b5 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -20,7 +20,10 @@ export default tseslint.config( rules: { ...reactHooks.configs.recommended.rules, "@typescript-eslint/no-explicit-any": 0, - "@typescript-eslint/no-unused-vars": ["warn", { args: "none", argsIgnorePattern: "^_", varsIgnorePattern: "^_" }], + "@typescript-eslint/no-unused-vars": [ + "warn", + { args: "none", argsIgnorePattern: "^_", varsIgnorePattern: "^_" }, + ], "react-refresh/only-export-components": [ "warn", { allowConstantExport: true },