2022-07-16 11:36:29 +00:00
|
|
|
{
|
|
|
|
"extends": "solhint:recommended",
|
|
|
|
"rules": {
|
|
|
|
"code-complexity": ["error", 8],
|
2023-02-25 10:40:24 +00:00
|
|
|
"compiler-version": ["error", ">=0.8.19"],
|
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],
|
2023-02-17 17:09:35 +00:00
|
|
|
"named-parameters-mapping": "warn",
|
|
|
|
"no-console": "off",
|
|
|
|
"not-rely-on-time": "off"
|
2022-07-16 11:36:29 +00:00
|
|
|
}
|
|
|
|
}
|