File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed
packages/eslint-config-react-app Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -48,14 +48,9 @@ We've removed this rule as it is not compatible with Prettier. If you rely on th
48
48
```json
49
49
{
50
50
"extends": "react-app",
51
- "overrides": [
52
- {
53
- "files": ["**/*.{js,ts?(x)}"],
54
- "rules": {
55
- "no-unexpected-multiline": "warn"
56
- }
57
- }
58
- ]
51
+ "rules": {
52
+ "no-unexpected-multiline": "warn"
53
+ }
59
54
}
60
55
```
61
56
Original file line number Diff line number Diff line change @@ -188,7 +188,6 @@ module.exports = {
188
188
'no-throw-literal' : 'warn' ,
189
189
'no-undef' : 'error' ,
190
190
'no-restricted-globals' : [ 'error' ] . concat ( restrictedGlobals ) ,
191
- 'no-unexpected-multiline' : 'warn' ,
192
191
'no-unreachable' : 'warn' ,
193
192
'no-unused-expressions' : [
194
193
'error' ,
You can’t perform that action at this time.
0 commit comments