@@ -9,8 +9,16 @@ describe('multiple instances', () => {
99 { } ,
1010 {
1111 plugins : [
12- new ESLintPlugin ( { ignore : false , exclude : 'error.js' } ) ,
13- new ESLintPlugin ( { ignore : false , exclude : 'error.js' } ) ,
12+ new ESLintPlugin ( {
13+ configType : 'eslintrc' ,
14+ ignore : false ,
15+ exclude : 'error.js' ,
16+ } ) ,
17+ new ESLintPlugin ( {
18+ configType : 'eslintrc' ,
19+ ignore : false ,
20+ exclude : 'error.js' ,
21+ } ) ,
1422 ] ,
1523 } ,
1624 ) ;
@@ -26,8 +34,16 @@ describe('multiple instances', () => {
2634 { } ,
2735 {
2836 plugins : [
29- new ESLintPlugin ( { ignore : false , exclude : 'good.js' } ) ,
30- new ESLintPlugin ( { ignore : false , exclude : 'error.js' } ) ,
37+ new ESLintPlugin ( {
38+ configType : 'eslintrc' ,
39+ ignore : false ,
40+ exclude : 'good.js' ,
41+ } ) ,
42+ new ESLintPlugin ( {
43+ configType : 'eslintrc' ,
44+ ignore : false ,
45+ exclude : 'error.js' ,
46+ } ) ,
3147 ] ,
3248 } ,
3349 ) ;
@@ -43,8 +59,16 @@ describe('multiple instances', () => {
4359 { } ,
4460 {
4561 plugins : [
46- new ESLintPlugin ( { ignore : false , exclude : 'error.js' } ) ,
47- new ESLintPlugin ( { ignore : false , exclude : 'good.js' } ) ,
62+ new ESLintPlugin ( {
63+ configType : 'eslintrc' ,
64+ ignore : false ,
65+ exclude : 'error.js' ,
66+ } ) ,
67+ new ESLintPlugin ( {
68+ configType : 'eslintrc' ,
69+ ignore : false ,
70+ exclude : 'good.js' ,
71+ } ) ,
4872 ] ,
4973 } ,
5074 ) ;
0 commit comments