2022-07-16 11:36:29 +00:00
|
|
|
{
|
|
|
|
"extends": "solhint:recommended",
|
|
|
|
"rules": {
|
|
|
|
"code-complexity": ["error", 8],
|
2023-02-05 11:06:26 +00:00
|
|
|
"compiler-version": ["error", ">=0.8.18"],
|
2023-01-07 09:47:59 +00:00
|
|
|
"func-name-mixedcase": "off",
|
2022-07-16 11:36:29 +00:00
|
|
|
"func-visibility": ["error", { "ignoreConstructors": true }],
|
|
|
|
"max-line-length": ["error", 120],
|
|
|
|
"not-rely-on-time": "off",
|
|
|
|
"reason-string": ["warn", { "maxLength": 64 }]
|
|
|
|
}
|
|
|
|
}
|