aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/.solhint.json
blob: 7e3b4dca21507afc345d6bd94551cf4159e0ebe1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "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"
    }
}