From a2b12fb731a9ba7b412bbf3373cee8c42f641bfa Mon Sep 17 00:00:00 2001 From: hamed musallam Date: Tue, 19 Nov 2024 10:25:55 +0100 Subject: [PATCH] chore: workaround rules once fixed: https://github.com/eslint/eslint/issues/19134 --- eslint.config.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/eslint.config.js b/eslint.config.js index fce2c737a..bad46f251 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -26,6 +26,12 @@ export default [ }, { rules: { + //todo remove the following rules once fixed: https://github.com/eslint/eslint/issues/19134 + // start + '@typescript-eslint/no-unused-expressions': 'off', + '@typescript-eslint/dot-notation': 'off', + '@typescript-eslint/no-empty-function': 'off', + //end 'import/default': 'off', 'import/no-unresolved': 'off', 'react-refresh/only-export-components': 'off',