@@ -186,7 +186,7 @@ const copyrightHeaderLines = [
186186gulp . task ( 'eslint' , ( ) => {
187187 return vfs . src ( all , { base : '.' , follow : true , allowEmpty : true } )
188188 . pipe ( filter ( eslintFilter ) )
189- . pipe ( gulpeslint ( 'src/ .eslintrc' ) )
189+ . pipe ( gulpeslint ( '.eslintrc.json ' ) )
190190 . pipe ( gulpeslint . formatEach ( 'compact' ) )
191191 . pipe ( gulpeslint . failAfterError ( ) ) ;
192192} ) ;
@@ -227,7 +227,7 @@ function checkPackageJSON(actualPath) {
227227
228228const checkPackageJSONTask = task . define ( 'check-package-json' , ( ) => {
229229 return gulp . src ( 'package.json' )
230- . pipe ( es . through ( function ( ) {
230+ . pipe ( es . through ( function ( ) {
231231 checkPackageJSON . call ( this , 'remote/package.json' ) ;
232232 checkPackageJSON . call ( this , 'remote/web/package.json' ) ;
233233 } ) ) ;
@@ -359,7 +359,7 @@ function hygiene(some) {
359359
360360 const javascript = result
361361 . pipe ( filter ( eslintFilter ) )
362- . pipe ( gulpeslint ( 'src/ .eslintrc' ) )
362+ . pipe ( gulpeslint ( '.eslintrc.json ' ) )
363363 . pipe ( gulpeslint . formatEach ( 'compact' ) )
364364 . pipe ( gulpeslint . failAfterError ( ) ) ;
365365
0 commit comments