diff --git a/docs/rules/no-extraneous-import.md b/docs/rules/no-extraneous-import.md index 4ab6b733..9f0bfcf0 100644 --- a/docs/rules/no-extraneous-import.md +++ b/docs/rules/no-extraneous-import.md @@ -1,6 +1,6 @@ # Disallow `import` declarations which import extraneous modules (no-extraneous-import) -If a `import` declaration's source is extraneous (it's not written in `package.json`), the program works in local, but will not work after dependencies are re-installed. It will cause troubles to your team/contributors. +If an `import` declaration's source is extraneous (it's not written in `package.json`), the program works in local, but will not work after dependencies are re-installed. It will cause troubles to your team/contributors. This rule disallows `import` declarations of extraneous modules. ## Rule Details