.solhint.json 517 B

1234567891011121314151617181920
  1. {
  2. "extends": "solhint:recommended",
  3. "plugins": ["prettier"],
  4. "rules": {
  5. "code-complexity": ["error", 8],
  6. "compiler-version": ["error", ">=0.8.4"],
  7. "const-name-snakecase": "off",
  8. "constructor-syntax": "error",
  9. "func-visibility": ["error", { "ignoreConstructors": true }],
  10. "max-line-length": ["error", 120],
  11. "not-rely-on-time": "off",
  12. "prettier/prettier": [
  13. "error",
  14. {
  15. "endOfLine": "auto"
  16. }
  17. ],
  18. "reason-string": ["warn", { "maxLength": 64 }]
  19. }
  20. }