UNPKG

@slippy-lint/slippy

Version:

A simple but powerful linter for Solidity

13 lines (8 loc) 215 B
# no-duplicate-imports Forbids importing the same file multiple times. ## Rule details Examples of **incorrect** code for this rule: ```solidity import { A } from "./foo.sol"; import { B } from "./foo.sol"; ```