From 399dca2ef928761a9c94c16ba1849fd839532c46 Mon Sep 17 00:00:00 2001 From: veeck Date: Wed, 30 Jun 2021 15:26:03 +0200 Subject: [PATCH] Make eslint complain about var usage --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index 3e685a0d..0905057c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -25,6 +25,7 @@ "prettier/prettier": "error", "eqeqeq": "error", "no-prototype-builtins": "off", + "no-var": "error", "no-unused-vars": "off" } }