From 5ce2eedd4503e651a73f504d9910a419d5d8abfc Mon Sep 17 00:00:00 2001 From: fang Date: Wed, 27 Mar 2024 19:21:26 +0100 Subject: [PATCH] lint: remove A fair chunk of the stuff it's throwing errors on right now is made worse by its suggestions. We could tweak it until it's good, but, not very many people working on this repo right now, and we can always police egregious style mishaps in PR review. --- .github/workflows/main.yml | 5 +---- package.json | 8 -------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 42fcfff..42090c2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,7 @@ name: CI on: [push] jobs: build: - name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }} + name: Build and test on Node ${{ matrix.node }} and ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: @@ -22,9 +22,6 @@ jobs: - name: Install deps and build (with cache) uses: bahmutov/npm-install@v1 - - name: Lint - run: yarn lint - - name: Test run: yarn test --ci --coverage --maxWorkers=2 diff --git a/package.json b/package.json index 05610d5..7951094 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,6 @@ "start": "dts watch", "build": "dts build", "test": "dts test", - "lint": "dts lint", "prepare": "dts build", "size": "size-limit", "analyze": "size-limit --why" @@ -43,13 +42,6 @@ "pre-commit": "dts lint" } }, - "prettier": { - "printWidth": 80, - "semi": true, - "singleQuote": true, - "trailingComma": "es5", - "endOfLine": "auto" - }, "size-limit": [ { "path": "dist/aura.cjs.production.min.js",