forked from TovarishFin/rps-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.soliumrc.json
36 lines (36 loc) · 811 Bytes
/
.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
{
"extends": "solium:all",
"plugins": [
"security"
],
"rules": {
"error-reason": false,
"arg-overflow": "error",
"array-declarations": "error",
"blank-lines": "error",
"camelcase": "error",
"comma-whitespace": "error",
"deprecated-suicide": "error",
"function-whitespace": "error",
"imports-on-top": "error",
"indentation": [
"error",
2
],
"lbrace": "error",
"mixedcase": "error",
"no-empty-blocks": "error",
"no-unused-vars": "error",
"operator-whitespace": "error",
"pragma-on-top": "error",
"quotes": [
"error",
"double"
],
"security/no-inline-assembly": "off",
"semicolon-whitespace": "error",
"uppercase": "off",
"variable-declarations": "error",
"whitespace": "error"
}
}