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
4848```json
4949{
5050 "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+ }
5954}
6055```
6156
Original file line number Diff line number Diff line change @@ -188,7 +188,6 @@ module.exports = {
188188 'no-throw-literal' : 'warn' ,
189189 'no-undef' : 'error' ,
190190 'no-restricted-globals' : [ 'error' ] . concat ( restrictedGlobals ) ,
191- 'no-unexpected-multiline' : 'warn' ,
192191 'no-unreachable' : 'warn' ,
193192 'no-unused-expressions' : [
194193 'error' ,
You can’t perform that action at this time.
0 commit comments