.solhint.json 460 B

12345678910111213141516171819
  1. {
  2. "extends": "solhint:recommended",
  3. "plugins": ["prettier"],
  4. "rules": {
  5. "code-complexity": ["error", 8],
  6. "compiler-version": ["error", ">=0.8.4"],
  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. "prettier/prettier": [
  13. "error",
  14. {
  15. "endOfLine": "auto"
  16. }
  17. ]
  18. }
  19. }