File tree Expand file tree Collapse file tree 3 files changed +0
-5
lines changed Expand file tree Collapse file tree 3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,6 @@ const features = {
103
103
packages : [
104
104
{ name : 'eslint' } ,
105
105
{ name : 'eslint-loader' , enforce_version : true } ,
106
- { name : 'babel-eslint' , enforce_version : true } ,
107
106
] ,
108
107
description : 'Enable ESLint checks'
109
108
} ,
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ module.exports = {
23
23
24
24
const eslintLoaderOptions = {
25
25
cache : true ,
26
- parser : 'babel-eslint' ,
27
26
emitWarning : true
28
27
} ;
29
28
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ describe('loaders/eslint', () => {
30
30
31
31
expect ( actualOptions ) . to . deep . equal ( {
32
32
cache : true ,
33
- parser : 'babel-eslint' ,
34
33
emitWarning : true
35
34
} ) ;
36
35
} ) ;
@@ -45,7 +44,6 @@ describe('loaders/eslint', () => {
45
44
46
45
expect ( actualOptions ) . to . deep . equal ( {
47
46
cache : true ,
48
- parser : 'babel-eslint' ,
49
47
emitWarning : true ,
50
48
extends : 'airbnb'
51
49
} ) ;
@@ -61,7 +59,6 @@ describe('loaders/eslint', () => {
61
59
62
60
expect ( actualOptions ) . to . deep . equal ( {
63
61
cache : true ,
64
- parser : 'babel-eslint' ,
65
62
emitWarning : false
66
63
} ) ;
67
64
} ) ;
You can’t perform that action at this time.
0 commit comments