-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.soliumrc.json
More file actions
33 lines (33 loc) · 749 Bytes
/
.soliumrc.json
File metadata and controls
33 lines (33 loc) · 749 Bytes
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
{
"extends": "solium:recommended",
"plugins": ["security", "zeppelin"],
"rules": {
"indentation": ["error", 2],
"no-experimental": "error",
"quotes": ["error", "double"],
"security/no-block-members": "off",
"security/no-inline-assembly": "off",
"security/no-low-level-calls": "error",
"zeppelin/constant-candidates": [
"warning"
],
"zeppelin/highlight-comments": [
"warning"
],
"zeppelin/missing-natspec-comments": [
"off"
],
"zeppelin/no-arithmetic-operations": [
"error"
],
"zeppelin/no-state-variable-shadowing": [
"warning"
],
"zeppelin/no-unchecked-send": [
"error"
],
"zeppelin/no-unused-imports": [
"error"
]
}
}