We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01f1852 commit 271df10Copy full SHA for 271df10
docs/rules/no-extraneous-dependencies.md
@@ -22,7 +22,7 @@ You can set the options like this:
22
You can also use an array of globs instead of literal booleans:
23
24
```js
25
-"import/no-extraneous-dependencies": ["error", {"devDependencies": ['*.test.js', '*.spec.js']}]
+"import/no-extraneous-dependencies": ["error", {"devDependencies": ['**/*.test.js', '**/*.spec.js']}]
26
```
27
28
When using an array of globs, the setting will be activated if the name of the file being linted matches a single glob in the array.
0 commit comments