Skip to content

Commit

Permalink
feat: Updates globs in no-extraneous.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexseitsinger committed Jun 13, 2019
1 parent 83f4718 commit fdb665d
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions rules/import/lib/helpful-warnings.js
Expand Up @@ -39,11 +39,34 @@ module.exports = {
*/
"import/no-extraneous-dependencies": ["error", {
devDependencies: [
"tests/*.test.js",
/**
* Jest
*/
"tests/**",
"**/tests/**",
"__tests__/**",
"**/__tests__/**",
"jest.*.js",
"**/jest.*.js",
"jest/*.js",
"**/jest/*.js",
/**
* Webpack
*/
"webpack.config.js",
"**/webpack.config.js",
"webpack-config.*.*.js",
"**/webpack-config.*.*.js",
"webpack.config.*.js",
"**/webpack.config.*.js",
"webpack/**",
"**/webpack/**",
"webpack/*.js",
"webpack/**/*.js",
"**/webpack/*.js",
"webpack/client/*.js",
"**/webpack/client/*.js",
"webpack/server/*.js",
"**/webpack/server/*.js",
],
peerDependencies: false,
optionalDependencies: false,
Expand Down

0 comments on commit fdb665d

Please sign in to comment.