@slippy-lint/slippy
Version:
A simple but powerful linter for Solidity
24 lines (16 loc) • 401 B
Markdown
> 🔧 Problems reported by this rule can be automatically fixed by using the `--fix` flag
Forbids the use of default visibility for state variables
Examples of **correct** code for this rule:
```solidity
contract Example {
uint256 public value;
}
```
Examples of **incorrect** code for this rule:
```solidity
contract Example {
uint256 value;
}
```