From 3b2a830161b7a89847ab607444ff9ae3a14e26b9 Mon Sep 17 00:00:00 2001 From: Sylvain Lesage Date: Fri, 13 Dec 2024 22:32:27 +0100 Subject: [PATCH] fix the root eslint config to only lint the root files --- eslint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.js b/eslint.config.js index c712dcb..3ac5dac 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -60,5 +60,6 @@ export default [ ...javascript.configs.recommended.rules, ...sharedJsRules, }, + files: ['*.js', 'test/**/*.js'], }, ]