Files
protocol/packages/contracts/.solhint.json
2018-07-05 20:58:52 +03:00

18 lines
501 B
JSON

{
"extends": "default",
"rules": {
"bracket-align": "warn",
"code-complexity": "warn",
"const-name-snakecase": "warn",
"expression-indent": "warn",
"function-max-lines": "warn",
"statement-indent": "warn",
"indent": ["warn", 4],
"quotes": ["error", "double"],
"max-line-length": ["warn", 120],
"separate-by-one-line-in-contract": "warn",
"space-after-comma": "error",
"func-order": "warn"
}
}