Skip to content

Commit

Permalink
chore(deps): update dependency eslint to v9 (#536)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency eslint to v9

* chore: changing deps for flat config

* chore: --legacy-peer-deps

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Nicholas Griffin <[email protected]>
  • Loading branch information
renovate[bot] and nicholasgriffintn authored Dec 16, 2024
1 parent a96aa40 commit 5c3a673
Show file tree
Hide file tree
Showing 17 changed files with 7,431 additions and 1,438 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: npx audit-ci

- name: Install Node Modules
run: npm ci
run: npm ci --legacy-peer-deps

- name: Report Coverage
uses: paambaati/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: npx audit-ci

- name: Install Node Modules
run: npm ci
run: npm ci --legacy-peer-deps

- name: Build Docs
run: npm run generate-docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
cache: 'npm'

- name: Install Node Modules
run: npm ci
run: npm ci --legacy-peer-deps

- name: Run Coverage Check
run: npm run lcov
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: npx audit-ci

- name: Install Node Modules
run: npm ci
run: npm ci --legacy-peer-deps

- name: Run Tests and Linting
run: npm run test
Expand Down
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ scripts
.prettierignore
.prettierrc.js
jsr.json
typdoc.json
typdoc.json
eslint.config.js
13 changes: 13 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import eslintConfigESLint from "eslint-config-eslint";

export default [
...eslintConfigESLint,
{
ignores: ["node_modules", "coverage", "bake-scripts", "dist"],
},
{
rules: {
"new-cap": "off",
},
},
];
Loading

0 comments on commit 5c3a673

Please sign in to comment.