From 0cdc69d4da8c22e3b5af7e60b2b5a45871dc950a Mon Sep 17 00:00:00 2001 From: Arthur Abeilice Date: Mon, 4 May 2026 23:36:38 -0300 Subject: [PATCH] chore(scripts): scope lint to src and tests instead of repo-wide --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 81da212..e3d9b81 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,8 @@ "build-only": "vite build", "preview": "vite preview", "type-check": "vue-tsc --skipLibCheck --noEmit", - "lint": "eslint .", - "lint:fix": "eslint . --fix", + "lint": "eslint src tests --no-error-on-unmatched-pattern", + "lint:fix": "eslint src tests --fix --no-error-on-unmatched-pattern", "format": "prettier --write \"src/**/*.{ts,vue,json}\"", "format:check": "prettier --check \"src/**/*.{ts,vue,json}\"", "wagmi:gen": "wagmi generate"