codex-contracts-eth/.solhint.json

13 lines
359 B
JSON
Raw Normal View History

2022-02-09 14:37:55 +01:00
{
"extends": "solhint:recommended",
"rules": {
"compiler-version": ["warn", "^0.8.0"],
"func-visibility": ["warn", {"ignoreConstructors": true}],
"private-vars-leading-underscore": ["warn", { "strict": true }],
2025-01-22 14:51:43 +01:00
"not-rely-on-time": "off",
"no-global-import": "off",
"explicit-types": "off",
"immutable-vars-naming": "off"
2022-02-09 14:37:55 +01:00
}
}