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