From 1934d3525a0d48de0c1863f96bc84809bf2e285f Mon Sep 17 00:00:00 2001 From: Divlo Date: Mon, 6 Feb 2023 23:36:21 +0100 Subject: [PATCH] feat: add `no-new-native-nonconstructor` Ref: https://eslint.org/docs/latest/rules/no-new-native-nonconstructor BREAKING CHANGE: New rule introduced --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index 4badff3..7f13e3d 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -42,6 +42,7 @@ "no-irregular-whitespace": "error", "no-loss-of-precision": "error", "no-misleading-character-class": "error", + "no-new-native-nonconstructor": "error", "no-new-symbol": "error", "no-obj-calls": "error", "no-promise-executor-return": "error",