From 71e3dc908314cdf462bf501d84d5c0d963add467 Mon Sep 17 00:00:00 2001 From: neru Date: Sat, 10 Jan 2026 09:10:02 -0300 Subject: [PATCH] fix: only lint at /src --- eslint.config.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, ]);