12345678910111213 |
- {
- "extends": "solhint:recommended",
- "plugins": ["prettier"],
- "rules": {
- "code-complexity": ["error", 7],
- "compiler-version": ["error", "^0.6.10"],
- "constructor-syntax": "error",
- "max-line-length": ["error", 120],
- "not-rely-on-time": "off",
- "prettier/prettier": "error",
- "reason-string": ["warn", { "maxLength": 64 }]
- }
- }
|