Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
11 changes: 3 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,9 @@ We've removed this rule as it is not compatible with Prettier. If you rely on th
```json
{
"extends": "react-app",
"overrides": [
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we remove this rule this no longer needs to be an override.

{
"files": ["**/*.{js,ts?(x)}"],
"rules": {
"no-unexpected-multiline": "warn"
}
}
]
"rules": {
"no-unexpected-multiline": "warn"
}
}
```

Expand Down
1 change: 0 additions & 1 deletion packages/eslint-config-react-app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ module.exports = {
'no-throw-literal': 'warn',
'no-undef': 'error',
'no-restricted-globals': ['error'].concat(restrictedGlobals),
'no-unexpected-multiline': 'warn',
'no-unreachable': 'warn',
'no-unused-expressions': [
'error',
Expand Down