From c007d4674493af1b51aef9250e034e58b2e567b9 Mon Sep 17 00:00:00 2001 From: Bryan Kendall Date: Tue, 2 Jan 2024 16:02:27 -0800 Subject: [PATCH] remove unused rules --- .eslintrc.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index b70e7db..dbd4ea1 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -43,17 +43,13 @@ module.exports = { { files: ["*.js"], rules: { - "@typescript-eslint/no-empty-function": "warn", // TODO(bkendall): remove allow to error. "@typescript-eslint/no-this-alias": "warn", // TODO(bkendall): remove allow to error. "@typescript-eslint/no-unsafe-argument": "warn", // TODO(bkendall): remove allow to error. "@typescript-eslint/no-unsafe-assignment": "warn", // TODO(bkendall): remove allow to error. "@typescript-eslint/no-unsafe-call": "warn", // TODO(bkendall): remove allow to error. "@typescript-eslint/no-unsafe-member-access": "warn", // TODO(bkendall): remove allow to error. "@typescript-eslint/no-unsafe-return": "warn", // TODO(bkendall): remove allow to error. - "@typescript-eslint/no-use-before-define": "warn", // TODO(bkendall): remove allow to error. "@typescript-eslint/no-var-requires": "warn", // TODO(bkendall): remove allow to error. - "@typescript-eslint/prefer-regexp-exec": "warn", // TODO(bkendall): remove allow to error. - "@typescript-eslint/restrict-plus-operands": "warn", // TODO(bkendall): remove allow to error. "@typescript-eslint/unbound-method": "warn", // TODO(bkendall): remove allow to error. }, },