From 49b1fb3bbc3e3498cb036097f5af89aded368cf8 Mon Sep 17 00:00:00 2001 From: Andrew Duthie Date: Mon, 24 Jul 2017 15:56:16 -0400 Subject: [PATCH] Remove ESLint no-use-before-define rule Can be difficult to adhere when interdependant functions in same file. Not error-prone. --- .eslintrc.json | 1 - 1 file changed, 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index a1e9739eda4b45..d5bfa8a56f88a3 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -78,7 +78,6 @@ "no-undef-init": "error", "no-unreachable": "error", "no-unsafe-negation": "error", - "no-use-before-define": [ "error", "nofunc" ], "no-useless-computed-key": "error", "no-useless-constructor": "error", "no-useless-return": "error",