From d51c334219ca795557b7b22c34366558246b124b Mon Sep 17 00:00:00 2001 From: kovacsv Date: Mon, 12 Jul 2021 07:40:36 +0200 Subject: [PATCH] Add more eslint checks. --- .eslintrc.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.eslintrc.json b/.eslintrc.json index 5cb8bb2..f5733a5 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -19,6 +19,12 @@ "guard-for-in": "error", "no-use-before-define": "error", "no-new": "error", + "no-new-object": "error", + "no-new-func": "error", + "no-array-constructor": "error", + "no-prototype-builtins": "error", + "no-eval": "error", + "no-useless-escape": "error", "quotes": ["error", "single"], "block-scoped-var": "error", "no-loop-func": "error",