From 75c3cbafd08c122df962b417fa4f160641d32f2c Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Tue, 6 Jun 2017 23:09:31 +0200 Subject: [PATCH] (eslint) set restrictive rule with non used variables --- .eslintrc.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.yml b/.eslintrc.yml index 9ea73b24f..bd78d193b 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -47,7 +47,7 @@ rules: no-unreachable: 2 # useful for code clean-up - no-unused-vars: [1, {"vars": "all", "args": "none"}] + no-unused-vars: [2, {"vars": "all", "args": "none"}] max-len: [1, 160] @@ -82,4 +82,4 @@ rules: one-var: 2 # console not allowed unless for testing - no-console: [2, {"allow": ["log", "warn"]}] \ No newline at end of file + no-console: [2, {"allow": ["log", "warn"]}]