-
-
Notifications
You must be signed in to change notification settings - Fork 204
chore: upgrade eslint from v8 to v9 #536
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
1518bd1
4862f76
e5b8aeb
9a1850c
593c971
7d72e3f
bfdcb13
9c72c38
274a2d9
2a560e3
5664a13
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,7 @@ | |
"*.webp", | ||
"node_modules", | ||
"coverage", | ||
"*.log" | ||
"*.log", | ||
"test/lock-files/url/**" | ||
] | ||
} |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
/dist | ||
/node_modules | ||
/test/fixtures | ||
CHANGELOG.md | ||
CHANGELOG.md | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And remove it from here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
test/lock-files/url/** |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { defineConfig } from "eslint/config"; | ||
import configs from "eslint-config-webpack/configs.js"; | ||
|
||
export default defineConfig([ | ||
{ | ||
ignores: ["test/lock-files/url/**"], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And here |
||
}, | ||
{ | ||
extends: [configs["recommended-dirty"]], | ||
}, | ||
]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's save it in
test/outputs
, we are ignoring this path by default - https://github.com/webpack/eslint-config-webpack/blob/main/ignore-paths.js#L55C8-L55C15, just change a testThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.