Skip to content

Commit

Permalink
minor typo in import/no-cycle rule docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sharmilajesupaul committed Apr 5, 2018
1 parent ee15fa4 commit f13f18e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/no-cycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cycles created by `require` within imported modules may not be detected.
There is a `maxDepth` option available to prevent full expansion of very deep dependency trees:

```js
/*eslint import/no-unresolved: [2, { maxDepth: 1 }]*/
/*eslint import/no-cycle: [2, { maxDepth: 1 }]*/

// dep-c.js
import './dep-a.js'
Expand Down

0 comments on commit f13f18e

Please sign in to comment.