From a93426dcf91e5cd2ff0182d379d91ca18af1a2cd Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 10 Aug 2023 20:04:31 +0200 Subject: [PATCH] build: fix linter configuration for TS examples, take 2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index a6b0c95a..c5784c0f 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -120,7 +120,8 @@ module.exports = defineConfig({ '@typescript-eslint/no-unsafe-call': 'off', '@typescript-eslint/no-unsafe-assignment': 'off', '@typescript-eslint/no-unsafe-member-access': 'off', - '@typescript-eslint/no-unnecessary-type-assertion': 'off' + '@typescript-eslint/no-unnecessary-type-assertion': 'off', + '@typescript-eslint/restrict-template-expressions': 'off' } }, { -- 2.34.1