All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
Import statement includes an entire file instead of selected symbols.
import * from "foo.sol"
import "foo.sol"
import {A} from "./A.sol"
import "./A.sol" as A
import * as A from "./A.sol"
no-global-import on Solhint's documentation.