.solhint.json 357 B

12345678910111213
  1. {
  2. "extends": "solhint:recommended",
  3. "plugins": ["prettier"],
  4. "rules": {
  5. "code-complexity": ["error", 7],
  6. "compiler-version": ["error", "^0.6.10"],
  7. "constructor-syntax": "error",
  8. "max-line-length": ["error", 120],
  9. "not-rely-on-time": "off",
  10. "prettier/prettier": "error",
  11. "reason-string": ["warn", { "maxLength": 64 }]
  12. }
  13. }