Closed
Description
Maybe gulpfile.js
, Gruntfile
or other task runner files also can be listed to ignore.
'import/no-extraneous-dependencies': ['error', {
devDependencies: [
'spec/**',
'test/**',
'tests/**',
'**/__tests__/**',
'webpack.config.js',
'webpack.config.*.js',
'gulpfile.js',
'Gruntfile',
],
optionalDependencies: false,
}],
Any feedback?