Przeglądaj źródła

Sorted .soliumrc.json rules.

Nicolás Venturo 7 lat temu
rodzic
commit
4d799f3cbe
1 zmienionych plików z 4 dodań i 3 usunięć
  1. 4 3
      .soliumrc.json

+ 4 - 3
.soliumrc.json

@@ -2,13 +2,14 @@
   "extends": "solium:all",
   "plugins": ["security"],
   "rules": {
-    "quotes": ["error", "double"],
-    "no-empty-blocks": "off",
-    "uppercase": "off",
     "error-reason": "off",
     "indentation": ["error", 2],
     "max-len": ["warning", 79],
     "no-constant": ["error"],
+    "no-empty-blocks": "off",
+    "quotes": ["error", "double"],
+    "uppercase": "off",
+
     "security/enforce-explicit-visibility": ["error"],
     "security/no-block-members": ["warning"],
     "security/no-inline-assembly": ["warning"]