codex-contracts-eth/.solhint.json
Mark Spanbroek be38c54622 [style] enforce _ prefix for private names
Co-authored-by: Eric Mastro <eric.mastro@gmail.com>
2023-01-23 15:10:23 +01:00

10 lines
263 B
JSON

{
"extends": "solhint:recommended",
"rules": {
"compiler-version": ["warn", "^0.8.0"],
"func-visibility": ["warn", {"ignoreConstructors": true}],
"private-vars-leading-underscore": ["warn", { "strict": true }],
"not-rely-on-time": "off"
}
}