From 52333d17da10f90e0c2320d09814d308f5c13121 Mon Sep 17 00:00:00 2001 From: Siirko Date: Sun, 3 Sep 2023 11:56:53 +0200 Subject: [PATCH 1/2] Update release.yml --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c06b16f..ab5f11c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,6 +20,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: 16 + - name: install pnpm + run: npm i -g pnpm - name: install Rust stable uses: dtolnay/rust-toolchain@stable - name: install dependencies (ubuntu only) From 8f37961fcf2a65169e11d0ac6eb2e83fd623314b Mon Sep 17 00:00:00 2001 From: Siirko Date: Sun, 3 Sep 2023 12:12:22 +0200 Subject: [PATCH 2/2] Update .eslintrc.json --- .eslintrc.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 3ec9a61..47e0d43 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -41,7 +41,12 @@ ], "simple-import-sort/imports": "error", "simple-import-sort/exports": "error", - "prettier/prettier": "error", + "prettier/prettier": [ + "error", + { + "endOfLine": "auto" + } + ], "react-hooks/exhaustive-deps": "error" } -} \ No newline at end of file +}