-
-
Notifications
You must be signed in to change notification settings - Fork 195
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
feat: add the eslint-visitor-keys
package
#620
Conversation
.github/workflows/release-please.yml
Outdated
@@ -98,3 +98,29 @@ jobs: | |||
env: | |||
MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }} | |||
MASTODON_HOST: ${{ secrets.MASTODON_HOST }} | |||
|
|||
#----------------------------------------------------------------------------- |
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.
This needs to go first because Espree depends on eslint-visitor-keys
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.
Updated 👍🏻
eslint.config.js
Outdated
@@ -15,7 +15,7 @@ export default [ | |||
...eslintConfigESLint, | |||
eslintConfigESLintFormatting, | |||
{ | |||
files: ["packages/espree/tests/lib/**"], | |||
files: ["packages/espree/tests/lib/**", "packages/eslint-visitor-keys/tests/lib/**"], |
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.
Maybe we can simplify?
files: ["packages/espree/tests/lib/**", "packages/eslint-visitor-keys/tests/lib/**"], | |
files: ["packages/*/tests/lib/**"], |
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.
Yes, updated.
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.
LGTM. Would like @nzakas to verify before merging.
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.
LGTM. Thanks!
Refers #609