diff --git a/src/rules/no-cycle.js b/src/rules/no-cycle.js index 61b3b9639..fb1fda633 100644 --- a/src/rules/no-cycle.js +++ b/src/rules/no-cycle.js @@ -133,8 +133,10 @@ module.exports = { /* Only report as a cycle if there are any import declarations that are considered by the rule. For example: + a.ts: import { foo } from './b' // should not be reported as a cycle + b.ts: import type { Bar } from './a' */