forked from towns-protocol/towns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.solhint.json
24 lines (24 loc) · 816 Bytes
/
.solhint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": "solhint:recommended",
"rules": {
"code-complexity": ["warn", 9],
"compiler-version": ["error", "^0.8.0"],
"const-name-snakecase": "off",
"constructor-syntax": "error",
"func-visibility": ["error", { "ignoreConstructors": true }],
"max-line-length": ["warn", 170],
"not-rely-on-time": "off",
"reason-string": ["warn", { "maxLength": 64 }],
"var-name-mixedcase": "off",
"no-empty-blocks": "off",
"no-inline-assembly": "off",
"avoid-low-level-calls": "off",
"avoid-tx-origin": "off",
"no-console": "off",
"func-name-mixedcase": "off",
"max-states-count": "off",
"func-named-parameters": "off",
"no-unused-import": "off",
"quotes": "off"
}
}