-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation for
no-extraneous-dependencies
- Loading branch information
Showing
3 changed files
with
81 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Forbid the use of extraneous packages | ||
|
||
Forbid the import of external modules that are not declared in the `package.json`'s `dependencies` or `devDependencies`. | ||
The closest parent `package.json` will be used. If no `package.json` is found, the rule will not lint anything. | ||
|
||
### Options | ||
|
||
This rule supports the following options: | ||
|
||
`devDependencies`: If set to `false`, then the rule will show an error when `devDependencies` are imported. Defaults to `true`. | ||
|
||
You can set the options like this: | ||
|
||
```js | ||
"import/no-extraneous-dependencies": ["error", {"devDependencies": false}] | ||
``` | ||
|
||
|
||
## Rule Details | ||
|
||
Given the following `package.json`: | ||
```json | ||
{ | ||
"name": "my-project", | ||
"...": "...", | ||
"dependencies": { | ||
"builtin-modules": "^1.1.1", | ||
"lodash.cond": "^4.2.0", | ||
"lodash.find": "^4.2.0", | ||
"pkg-up": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"ava": "^0.13.0", | ||
"eslint": "^2.4.0", | ||
"eslint-plugin-ava": "^1.3.0", | ||
"xo": "^0.13.0" | ||
} | ||
} | ||
``` | ||
|
||
|
||
## Fail | ||
|
||
```js | ||
var _ = require('lodash'); | ||
import _ from 'lodash'; | ||
|
||
/* eslint import/no-extraneous-dependencies: ["error", {"devDependencies": false}] */ | ||
import test from 'ava'; | ||
var test = require('ava'); | ||
``` | ||
|
||
|
||
## Pass | ||
|
||
```js | ||
// Builtin and internal modules are fine | ||
var path = require('path'); | ||
var foo = require('./foo'); | ||
|
||
import test from 'ava'; | ||
import find from 'lodash.find'; | ||
``` | ||
|
||
|
||
## When Not To Use It | ||
|
||
If you do not have a `package.json` file in your project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters