@slippy-lint/slippy
Version:
A simple but powerful linter for Solidity
22 lines (13 loc) • 329 B
Markdown
# imports-on-top
Enforces that all import statements are at the top of the file.
## Rule details
Examples of **correct** code for this rule:
```solidity
import "path/to/contract.sol";
contract Example {}
```
Examples of **incorrect** code for this rule:
```solidity
contract Example {}
import "path/to/contract.sol";
```