]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
ui: exclude generated build dirs from prettier and eslint so lint errors stop being...
authorPascal <redacted>
Sat, 30 May 2026 14:50:54 +0000 (16:50 +0200)
committerGitHub <redacted>
Sat, 30 May 2026 14:50:54 +0000 (16:50 +0200)
tools/ui/.prettierignore
tools/ui/eslint.config.js

index 7d74fe246876dde74005fccc222f36abe34303f4..14b01e961bd27f2e72de66a5b9f8c6cf4a42d5ac 100644 (file)
@@ -7,3 +7,9 @@ bun.lockb
 
 # Miscellaneous
 /static/
+
+# Build output
+/dist/
+/build/
+/.svelte-kit/
+test-results
index 4ed9dd7ca3a90957ef2b4bc97ff6ea19500757d4..6b3b1b5c04878c53b871fe3fe11743980b513bab 100644 (file)
@@ -45,8 +45,8 @@ export default ts.config(
                }
        },
        {
-               // Exclude Storybook files from main ESLint rules
-               ignores: ['.storybook/**/*']
+               // Exclude generated build output and Storybook files from ESLint
+               ignores: ['dist/**', 'build/**', '.svelte-kit/**', 'test-results/**', '.storybook/**/*']
        },
        storybook.configs['flat/recommended']
 );