From e56903ca2a7fd1713629a83486fecb493ef7ab6e Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 30 May 2024 22:49:24 +0200 Subject: [PATCH] fix(ci): silence linter, take 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- eslint.config.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/eslint.config.js b/eslint.config.js index 88be9a70..7ada77c2 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -43,6 +43,12 @@ export default defineFlatConfig([ '@stylistic/operator-linebreak': 'off', }, }, + { + files: ['examples/**/*.ts'], + rules: { + 'no-undef': 'off', + }, + }, { files: ['examples/**/*.js', 'examples/**/*.cjs'], rules: { -- 2.34.1