.solhint.json 458 B

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