-
Notifications
You must be signed in to change notification settings - Fork 37
/
.soliumrc.json
38 lines (37 loc) · 1.05 KB
/
.soliumrc.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
{
"extends": "solium:all",
"plugins": ["security"],
"rules": {
"quotes": ["error", "double"],
"indentation": ["error", 4],
"max-len": ["error", 120],
"array-declarations": "error",
"blank-lines": "error",
"camelcase": "error",
"comma-whitespace": "error",
"conditionals-whitespace": "error",
"deprecated-suicide": "error",
"emit": "error",
"error-reason": "error",
"function-whitespace": "error",
"imports-on-top": "error",
"lbrace": "error",
"linebreak-style": "error",
"mixedcase": "error",
"no-constant": "error",
"no-empty-blocks": "error",
"no-experimental": "error",
"security/no-inline-assembly": "off",
"no-unused-vars": "error",
"operator-whitespace": "error",
"pragma-on-top": "error",
"semicolon-whitespace": "error",
"uppercase": "error",
"value-in-payable": "error",
"variable-declarations": "error",
"visibility-first": "error",
"arg-overflow": "off",
"function-order": "off",
"whitespace": "off"
}
}