ci: exclude Deno edge functions and migration tests from web eslint

The web ESLint config (browser/React rules: no-explicit-any, no-unused-vars)
was linting supabase/functions/** and supabase/migrations/** — Deno TypeScript
that legitimately uses `any` for the chain/Supabase surfaces and npm: imports.
These have their own tooling (deno check + deno test) which passes. Add both
dirs to ignores so `eslint .` covers only the Vite app it is configured for.
This commit is contained in:
2026-07-25 16:30:01 -07:00
parent 3c7c4192b9
commit 5cf55aecbf
+2
View File
@@ -8,6 +8,8 @@ export default tseslint.config(
{
ignores: [
"dist/**",
"supabase/functions/**",
"supabase/migrations/**",
"node_modules/**",
"eslint.config.js",
"postcss.config.js",