-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[eslint] Don't crash on multiple
@babel/parser
copies (#13274)
- Loading branch information
1 parent
68bc4df
commit 1879491
Showing
7 changed files
with
112 additions
and
60 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
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
13 changes: 13 additions & 0 deletions
13
eslint/babel-eslint-tests/test/fixtures/duplicated-babel-parser/.eslintrc.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 @@ | ||
module.exports = { | ||
root: true, | ||
parser: "@babel/eslint-parser", | ||
parserOptions: { | ||
babelOptions: { | ||
configFile: __dirname + "/babel.config.js", | ||
sourceType: "module", | ||
}, | ||
}, | ||
rules: { | ||
"template-curly-spacing": "error", | ||
}, | ||
}; |
5 changes: 5 additions & 0 deletions
5
eslint/babel-eslint-tests/test/fixtures/duplicated-babel-parser/a.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,5 @@ | ||
import { func1 } from "./iodex.js"; | ||
|
||
export function five() { | ||
return { five: `number(${5})` }; | ||
} |
7 changes: 7 additions & 0 deletions
7
eslint/babel-eslint-tests/test/fixtures/duplicated-babel-parser/babel.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,7 @@ | ||
module.exports = { | ||
plugins: [ | ||
() => ({ | ||
parserOverride: require("npm-babel-parser").parse, | ||
}), | ||
], | ||
}; |
17 changes: 17 additions & 0 deletions
17
eslint/babel-eslint-tests/test/integration/duplicated-babel-parser.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,17 @@ | ||
import eslint from "eslint"; | ||
import path from "path"; | ||
import { fileURLToPath } from "url"; | ||
|
||
describe("https://github.com/babel/babel/issues/12985", () => { | ||
it("works with different copies of @babel/parser", () => { | ||
const engine = new eslint.CLIEngine({ ignore: false }); | ||
expect(() => | ||
engine.executeOnFiles([ | ||
path.resolve( | ||
path.dirname(fileURLToPath(import.meta.url)), | ||
`../fixtures/duplicated-babel-parser/a.js`, | ||
), | ||
]), | ||
).not.toThrow(); | ||
}); | ||
}); |
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