diff --git a/eslint.config.mts b/eslint.config.mts index cc5f6b0..ec018fb 100644 --- a/eslint.config.mts +++ b/eslint.config.mts @@ -4,6 +4,6 @@ import tseslint from "typescript-eslint"; import { defineConfig } from "eslint/config"; export default defineConfig([ - { files: ["**/*.{js,mjs,cjs,ts,mts,cts}"], plugins: { js }, extends: ["js/recommended"], languageOptions: { globals: globals.browser } }, + { files: ["src/*.{js,mjs,cjs,ts,mts,cts}"], plugins: { js }, extends: ["js/recommended"], languageOptions: { globals: globals.browser } }, tseslint.configs.recommended, ]);