Skip to content

no-duplicate-imports

Forbids importing the same file multiple times.

Examples of incorrect code for this rule:

import { A } from "./foo.sol";
import { B } from "./foo.sol";