fix: ignore third-party map component from linting
Lint & Vuln Scan / Go vulnerabilities (push) Successful in 22s
Lint & Vuln Scan / Frontend lint & types (push) Failing after 38s

The mapcn-svelte component at src/lib/components/ui/map/ is a
third-party library, not our code. Add to eslint ignores so we
don't need to maintain eslint-disable comments in imported code.
This commit is contained in:
2026-06-25 17:43:15 +01:00
parent ecf8c23c49
commit 154a7217b4
+3
View File
@@ -12,6 +12,9 @@ const gitignorePath = fileURLToPath(new URL('./.gitignore', import.meta.url));
export default defineConfig( export default defineConfig(
includeIgnoreFile(gitignorePath), includeIgnoreFile(gitignorePath),
{
ignores: ['src/lib/components/ui/map/']
},
js.configs.recommended, js.configs.recommended,
...ts.configs.recommended, ...ts.configs.recommended,
...svelte.configs.recommended, ...svelte.configs.recommended,