-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update dependency eslint to v9 (#536)
* 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
1 parent
a96aa40
commit 5c3a673
Showing
17 changed files
with
7,431 additions
and
1,438 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,5 @@ scripts | |
.prettierignore | ||
.prettierrc.js | ||
jsr.json | ||
typdoc.json | ||
typdoc.json | ||
eslint.config.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.