From: Jérôme Benoit Date: Sat, 12 Aug 2023 11:34:04 +0000 (+0200) Subject: build: silence linter X-Git-Tag: v2.6.24~9 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=7288e3343f316a02f046008829b86521a0988107;p=poolifier.git build: silence linter Signed-off-by: Jérôme Benoit --- 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' } }, {