From ec9b7aff3d47b10c3c6304bba623e8f56acdee0f Mon Sep 17 00:00:00 2001 From: ograu Date: Wed, 11 Dec 2019 15:26:36 +0100 Subject: [PATCH] Remove ESLint no-use-before-define (#901) * Remove no-use-before-define * Not for functions --- .eslintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index 12d13c08d3..6793ff841d 100644 --- a/.eslintrc +++ b/.eslintrc @@ -135,7 +135,7 @@ "no-shadow-restricted-names": 2, "no-undef": 2, "no-undef-init": 2, - "no-use-before-define": 2, + "no-use-before-define": [2, { "functions": false }], "constructor-super": 2, "no-class-assign": 2, "no-confusing-arrow": 2,