forked from dev-bootcamp-2019/final-project-RumeelHussain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.solhint.json
58 lines (58 loc) · 1.49 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"extends": "default",
"rules": {
"indent": [
"error",
2
],
"quotes": [
"error",
"double"
],
"max-line-length": [
"error",
120
],
"avoid-suicide": "error",
"avoid-sha3": "error",
"reentrancy": "error",
"avoid-throw": true,
"var-name-mixedcase": true,
"func-param-name-mixedcase": true,
"reentrancy": true,
"func-visibility": true,
"check-send-result": true,
"avoid-call-value": true,
"compiler-fixed": true,
"compiler-gt-0_4": true,
"no-complex-fallback": true,
"mark-callable-contracts": true,
"multiple-sends": true,
"no-simple-event-func-name": true,
"avoid-tx-origin": true,
"no-inline-assembly": true,
"not-rely-on-block-hash": true,
"avoid-low-level-calls": true,
"func-name-mixedcase": true,
"func-param-name-mixedcase": true,
"var-name-mixedcase": true,
"event-name-camelcase": true,
"const-name-snakecase": true,
"modifier-name-mixedcase": true,
"contract-name-camelcase": true,
"use-forbidden-name": true,
"visibility-modifier-order": true,
"imports-on-top": true,
"two-lines-top-level-separator": true,
"func-order": true,
"quotes": true,
"no-mix-tabs-and-spaces": true,
"bracket-align": true,
"array-declaration-spaces": true,
"separate-by-one-line-in-contract": true,
"expression-indent": true,
"statement-indent": true,
"space-after-comma": true,
"no-spaces-before-semicolon": true
}
}