Skip to content

Commit

Permalink
πŸ“ fix typo in no-extraneous-import.md (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzgit authored and mysticatea committed May 1, 2019
1 parent 0eb4927 commit b0164df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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
Expand Down

0 comments on commit b0164df

Please sign in to comment.