ens-usernames/.solhint.json
Ricardo Guilherme Schmidt 5a11efcae6 feat: tests
2024-06-14 12:32:16 -03:00

27 lines
460 B
JSON

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