forked from ETIM-PAUL/AirClaim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.solhint.json
More file actions
42 lines (42 loc) · 1.34 KB
/
Copy path.solhint.json
File metadata and controls
42 lines (42 loc) · 1.34 KB
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
40
41
42
{
"extends": "solhint:recommended",
"plugins": [ ],
"rules": {
"avoid-call-value": "error",
"avoid-low-level-calls": "warn",
"avoid-sha3": "error",
"avoid-suicide": "error",
"avoid-throw": "error",
"avoid-tx-origin": "off",
"check-send-result": "error",
"compiler-version": [ "off", "0.8.20" ],
"const-name-snakecase": "error",
"gas-custom-errors": "off",
"func-name-mixedcase": "error",
"ordering": "warn",
"imports-on-top": "error",
"mark-callable-contracts": "on",
"max-line-length": [ "error", 119 ],
"reason-string": "off",
"max-states-count": [ "error", 20 ],
"multiple-sends": "error",
"no-complex-fallback": "error",
"no-empty-blocks": "off",
"no-inline-assembly": "error",
"no-unused-vars": "error",
"not-rely-on-block-hash": "error",
"not-rely-on-time": "off",
"payable-fallback": "error",
"quotes": [ "error", "double" ],
"reentrancy": "error",
"state-visibility": "error",
"use-forbidden-name": "error",
"var-name-mixedcase": "error",
"visibility-modifier-order": "error",
"func-visibility": [ "error", { "ignoreConstructors": true } ],
"no-global-import": "off",
"contract-name-camelcase": "error",
"event-name-camelcase": "error",
"immutable-vars-naming": [ "error", { "immutablesAsConstants": false } ]
}
}