From 6f2ad2f959a5e42a71ec6256ff9f52432395c9b1 Mon Sep 17 00:00:00 2001 From: Afnan Fahim Date: Thu, 24 Mar 2016 10:08:25 -0700 Subject: [PATCH] Make no-use-before-define eslint rule a warning. --- .eslintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index 73a97e193..5ab39e461 100644 --- a/.eslintrc +++ b/.eslintrc @@ -74,7 +74,7 @@ "no-unreachable": 2, "no-unused-expressions": 2, "no-unused-vars": 2, - "no-use-before-define": [2, "nofunc"], + "no-use-before-define": [1, "nofunc"], "no-with": 2, "object-curly-spacing": [2, "never"], "quote-props": [1, "as-needed"],