Skip to content

Commit

Permalink
lint: remove
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Fang- committed Mar 27, 2024
1 parent 5e89c56 commit 5ce2eed
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

Expand Down
8 changes: 0 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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",
Expand Down

0 comments on commit 5ce2eed

Please sign in to comment.