Browse Source

fix: remove warning on timestamp usage

Matt Condon 7 years ago
parent
commit
d4dc4b25c8
1 changed files with 3 additions and 3 deletions
  1. 3 3
      .soliumrc.json

+ 3 - 3
.soliumrc.json

@@ -2,9 +2,9 @@
   "extends": "solium:all",
   "extends": "solium:all",
   "plugins": ["security"],
   "plugins": ["security"],
   "rules": {
   "rules": {
-    "indentation": ["error", 2],
     "quotes": ["error", "double"],
     "quotes": ["error", "double"],
-    "security/enforce-explicit-visibility": ["error"],
-    "security/no-block-members": ["warning", ["timestamp"]]
+    "indentation": ["error", 2],
+    "arg-overflow": ["warning", 3],
+    "security/enforce-explicit-visibility": ["error"]
   }
   }
 }
 }