/ .solhint.json
.solhint.json
 1  {
 2    "extends": "solhint:recommended",
 3    "rules": {
 4      "code-complexity": ["error", 8],
 5      "compiler-version": ["error", ">=0.8.17"],
 6      "func-name-mixedcase": "off",
 7      "func-visibility": ["error", { "ignoreConstructors": true }],
 8      "max-line-length": ["error", 120],
 9      "named-parameters-mapping": "warn",
10      "no-console": "off",
11      "not-rely-on-time": "off"
12    }
13  }
14