From d4dc4b25c87778762798f007e5b7f7ec246373b7 Mon Sep 17 00:00:00 2001 From: Matt Condon Date: Mon, 15 Jan 2018 14:52:05 -0500 Subject: [PATCH] fix: remove warning on timestamp usage --- .soliumrc.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.soliumrc.json b/.soliumrc.json index 1fe9127bd..c065f3f79 100644 --- a/.soliumrc.json +++ b/.soliumrc.json @@ -2,9 +2,9 @@ "extends": "solium:all", "plugins": ["security"], "rules": { - "indentation": ["error", 2], "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"] } }