foundry-template/.solhint.json

14 lines
375 B
JSON
Raw Normal View History

2022-07-16 11:36:29 +00:00
{
"extends": "solhint:recommended",
"rules": {
"code-complexity": ["error", 8],
"compiler-version": ["error", ">=0.8.19"],
"func-name-mixedcase": "off",
2022-07-16 11:36:29 +00:00
"func-visibility": ["error", { "ignoreConstructors": true }],
"max-line-length": ["error", 120],
"named-parameters-mapping": "warn",
"no-console": "off",
"not-rely-on-time": "off"
2022-07-16 11:36:29 +00:00
}
}