Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 26.9k
chore: migrate to @babel/eslint-parser#10761
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
fffa7f1aa05b67bb5e14bf4dc78841050b43d18c0ad652b81663cb6b864f3ce1be242eFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -17,9 +17,10 @@ | ||
| "jest.js" | ||
| ], | ||
| "peerDependencies": { | ||
| "@babel/eslint-parser": "^7.13.0", | ||
JLHwung marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| "@typescript-eslint/eslint-plugin": "^4.0.0", | ||
| "@typescript-eslint/parser": "^4.0.0", | ||
| "babel-eslint": "^10.0.0", | ||
| "babel-preset-react-app": "^10.0.0", | ||
| "eslint": "^7.5.0", | ||
| "eslint-plugin-flowtype": "^5.2.0", | ||
| "eslint-plugin-import": "^2.22.0", | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -194,7 +194,9 @@ function build(previousFileSizes) { | ||
| messages.warnings.length | ||
| ) { | ||
| // Ignore sourcemap warnings in CI builds. See #8227 for more info. | ||
| const filteredWarnings = messages.warnings.filter(w => !/Failed to parse source map/.test(w)); | ||
| const filteredWarnings = messages.warnings.filter( | ||
| w => !/Failed to parse source map/.test(w) | ||
| ); | ||
Comment on lines
+197
to
+199
Contributor 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. This seems to have come from Prettier, we can leave it in. | ||
| if (filteredWarnings.length) { | ||
| console.log( | ||
| chalk.yellow( | ||
Uh oh!
There was an error while loading. Please reload this page.