Skip to content

Commit f13f18e

Browse files
minor typo in import/no-cycle rule docs
1 parent ee15fa4 commit f13f18e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/rules/no-cycle.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ cycles created by `require` within imported modules may not be detected.
3232
There is a `maxDepth` option available to prevent full expansion of very deep dependency trees:
3333

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

3737
// dep-c.js
3838
import './dep-a.js'

0 commit comments

Comments
 (0)