From b0164df10fef3ac0bc393013ee088ca706d97e8e Mon Sep 17 00:00:00 2001 From: zzzgit Date: Wed, 1 May 2019 15:49:00 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20fix=20typo=20in=20no-extraneous-?= =?UTF-8?q?import.md=20(#159)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/rules/no-extraneous-import.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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