diff --git a/.soliumrc.json b/.soliumrc.json index 81876bcd69f..1fe9127bdcc 100644 --- a/.soliumrc.json +++ b/.soliumrc.json @@ -1,22 +1,10 @@ { - "custom-rules-filename": null, + "extends": "solium:all", + "plugins": ["security"], "rules": { - "imports-on-top": true, - "variable-declarations": true, - "array-declarations": true, - "operator-whitespace": true, - "lbrace": true, - "mixedcase": false, - "camelcase": true, - "uppercase": true, - "no-with": true, - "no-empty-blocks": true, - "no-unused-vars": true, - "double-quotes": true, - "blank-lines": true, - "indentation": true, - "whitespace": true, - "deprecated-suicide": true, - "pragma-on-top": true + "indentation": ["error", 2], + "quotes": ["error", "double"], + "security/enforce-explicit-visibility": ["error"], + "security/no-block-members": ["warning", ["timestamp"]] } }