no-duplicate-imports
Forbids importing the same file multiple times.
Rule details
Section titled “Rule details”Examples of incorrect code for this rule:
import { A } from "./foo.sol";import { B } from "./foo.sol";Forbids importing the same file multiple times.
Examples of incorrect code for this rule:
import { A } from "./foo.sol";import { B } from "./foo.sol";