.solhint.json 447 B

123456789101112131415161718
  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. "not-rely-on-time": "off",
  10. "prettier/prettier": [
  11. "error",
  12. {
  13. "endOfLine": "auto"
  14. }
  15. ],
  16. "reason-string": ["warn", { "maxLength": 64 }]
  17. }
  18. }