From 7288e3343f316a02f046008829b86521a0988107 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 12 Aug 2023 13:34:04 +0200 Subject: [PATCH] build: silence linter MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .eslintrc.js | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index d640b896..523f20f8 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -120,16 +120,15 @@ module.exports = defineConfig({ { files: ['examples/typescript/**/*.ts'], rules: { - // 'import/no-unresolved': 'off', - // '@typescript-eslint/no-unsafe-argument': 'off', + 'import/no-unresolved': 'off', + '@typescript-eslint/no-unsafe-argument': 'off', '@typescript-eslint/no-unsafe-call': 'off', - // '@typescript-eslint/no-unsafe-return': 'off', + '@typescript-eslint/no-unsafe-return': 'off', '@typescript-eslint/no-unsafe-assignment': 'off', - '@typescript-eslint/no-unsafe-member-access': 'off' - // '@typescript-eslint/no-unnecessary-type-assertion': 'off', - // '@typescript-eslint/strict-boolean-expressions': 'off', - // '@typescript-eslint/restrict-template-expressions': 'off', - // '@typescript-eslint/return-await': 'off' + '@typescript-eslint/no-unsafe-member-access': 'off', + '@typescript-eslint/no-unnecessary-type-assertion': 'off', + '@typescript-eslint/strict-boolean-expressions': 'off', + '@typescript-eslint/return-await': 'off' } }, { -- 2.34.1