Skip to content

Commit

Permalink
chore: add ignores to eslint and prettier (#13059)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikg authored Nov 26, 2024
1 parent 84eca42 commit c468f82
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
"**/CHANGELOG.md",
"**/vite.config.js.timestamp-*",
"**/.svelte-kit/**",
"**/.custom-out-dir/**",
"**/build/**",
"**/test-results/**",
"documentation/**/*.md",
"packages/package/test/fixtures/**/expected/**/*",
Expand Down
8 changes: 4 additions & 4 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ export default [
{
ignores: [
'**/.svelte-kit',
'packages/adapter-static/test/apps/*/build',
'packages/adapter-cloudflare/files',
'packages/adapter-netlify/files',
'packages/adapter-node/files'
'**/test-results',
'**/build',
'**/.custom-out-dir',
'packages/adapter-*/files'
]
},
{
Expand Down
2 changes: 2 additions & 0 deletions packages/kit/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ test/build-errors/apps/syntax-error/src/routes/+page.svelte
/types
src/runtime/components/svelte-5/layout.svelte
.svelte-kit
.custom-out-dir
build
test-results
/test/apps/basics/test/errors.json

0 comments on commit c468f82

Please sign in to comment.