From 9c7bc6b1e66935f8976e7fd91356f795e516fa44 Mon Sep 17 00:00:00 2001 From: Moreno Feltscher Date: Fri, 17 Nov 2023 23:06:38 +0200 Subject: [PATCH] fix: disable @typescript-eslint/no-unsafe-enum-comparison rule --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index cb475a6..3e1678a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,6 +1,7 @@ /** @type {import('eslint').Linter.Config} */ module.exports = { rules: { + '@typescript-eslint/no-unsafe-enum-comparison': 'off', '@typescript-eslint/consistent-type-definitions': 'off', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off',