.solhint.json 585 B

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