Skip to content
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-scope package #615

Merged
merged 8 commits into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: refactor eslint config & remove chai from espree dev dep
  • Loading branch information
snitin315 committed Aug 4, 2024
commit e9a7fa7f9e758f5a5549a766be9df72cbe454442
10 changes: 9 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,15 @@ export default [
...eslintConfigESLint,
eslintConfigESLintFormatting,
{
files: ["packages/espree/tests/lib/**", "packages/eslint-scope/tests/**"],
files: ["packages/espree/tests/lib/**"],
languageOptions: {
globals: {
...globals.mocha
}
}
},
{
files: ["packages/eslint-scope/tests/**"],
languageOptions: {
globals: {
...globals.mocha
Expand Down
1 change: 0 additions & 1 deletion packages/espree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"c8": "^7.11.0",
"chai": "^4.3.6",
"eslint-release": "^3.2.0",
"esprima-fb": "^8001.2001.0-dev-harmony-fb",
"mocha": "^9.2.2",
Expand Down