From 8a7e4e2b16c1644f3610e0692f07d7d033b2b64f Mon Sep 17 00:00:00 2001 From: Lucas Dower Date: Sat, 12 Feb 2022 00:59:14 +0000 Subject: [PATCH] Updated linting rules --- .eslintrc.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 2717e18..a0ac626 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -23,6 +23,10 @@ "no-multi-spaces": "off", "no-array-constructor": "off", "guard-for-in": "off", - "func-call-spacing": "off" + "func-call-spacing": "off", + "no-trailing-spaces": "off", + "new-cap": "off", + "no-console": "error", + "no-unused-vars": "warn" } }