generated from AngleProtocol/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.solhint.json
42 lines (42 loc) · 965 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"extends": "solhint:recommended",
"plugins": [
"prettier"
],
"rules": {
"max-line-length": [
"error",
120
],
"immutable-vars-naming": "off",
"avoid-call-value": "warn",
"avoid-low-level-calls": "off",
"avoid-tx-origin": "warn",
"const-name-snakecase": "warn",
"contract-name-camelcase": "warn",
"imports-on-top": "warn",
"prettier/prettier": "error",
"ordering": "off",
"max-states-count": "off",
"mark-callable-contracts": "off",
"no-empty-blocks": "off",
"no-global-import": "off",
"not-rely-on-time": "off",
"compiler-version": "off",
"private-vars-leading-underscore": "warn",
"reentrancy": "warn",
"no-inline-assembly": "off",
"no-complex-fallback": "off",
"reason-string": "off",
"func-visibility": [
"warn",
{
"ignoreConstructors": true
}
],
"explicit-types": [
"error",
"explicit"
]
}
}