From 621acaddf6f4cae417c7b928ac9ed377e03fa23d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikuro=E3=81=95=E3=81=84=E3=81=AA?= Date: Sat, 31 Aug 2024 01:23:22 +0900 Subject: [PATCH] Fix ignores in eslint.config.js --- eslint.config.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index 833d4ad..451df3c 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -7,10 +7,8 @@ import globals from "globals"; import tseslint from "typescript-eslint"; export default [ - { - files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"], - ignores: ["build", "node_modules"], - }, + { files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"] }, + { ignores: ["build/"] }, { languageOptions: { globals: { ...globals.browser, ...globals.node } } }, pluginJs.configs.recommended, ...tseslint.configs.recommended,