forked from 1Hive/redemptions-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.soliumrc.json
35 lines (35 loc) · 836 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
{
"extends": "solium:all",
"plugins": [
"security"
],
"rules": {
"imports-on-top": ["error"],
"variable-declarations": ["error"],
"array-declarations": ["error"],
"operator-whitespace": ["error"],
"lbrace": ["error"],
"mixedcase": ["warning"],
"camelcase": ["error"],
"uppercase": ["warning"],
"no-empty-blocks": ["error"],
"no-unused-vars": ["error"],
"quotes": ["error"],
"indentation": ["error"],
"whitespace": ["error"],
"deprecated-suicide": ["error"],
"arg-overflow": ["error", 8],
"pragma-on-top": ["error"],
"security/enforce-explicit-visibility": ["error"],
"consequent": 0,
"error-reason": ["warning"],
"function-order": [
"error",
{
"ignore": {
"functions": ["initialize"]
}
}
]
}
}