-
Notifications
You must be signed in to change notification settings - Fork 0
/
.solhint.json
39 lines (39 loc) · 1.24 KB
/
.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"extends": "solhint:recommended",
"rules": {
"no-empty-blocks": "off",
"not-rely-on-time": "off",
"compiler-version": ["error", "0.8.10"],
"func-visibility": ["error", { "ignoreConstructors": true }],
"constructor-syntax": "error",
"no-unused-vars": "error",
"payable-fallback": "error",
"reason-string": ["error", { "maxLength": 64 }],
"quotes": "error",
"const-name-snakecase": "error",
"contract-name-camelcase": "error",
"event-name-camelcase": "error",
"func-name-mixedcase": "error",
"func-param-name-mixedcase": "error",
"modifier-name-mixedcase": "error",
"private-vars-leading-underscore": "error",
"use-forbidden-name": "error",
"var-name-mixedcase": "error",
"imports-on-top": "error",
"ordering": "error",
"visibility-modifier-order": "error",
"avoid-call-value": "error",
"avoid-low-level-calls": "error",
"avoid-sha3": "error",
"avoid-suicide": "error",
"avoid-throw": "error",
"avoid-tx-origin": "error",
"check-send-result": "error",
"multiple-sends": "error",
"no-complex-fallback": "error",
"no-inline-assembly": "error",
"not-rely-on-block-hash": "error",
"reentrancy": "error",
"state-visibility": "error"
}
}