Skip to content

Commit

Permalink
fix: set the correct for the ESLint config ignores (#12110)
Browse files Browse the repository at this point in the history
  • Loading branch information
oekazuma authored Apr 14, 2024
1 parent af4b0d3 commit ef0aa0c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/chilly-wombats-roll.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'create-svelte': patch
---

fix: set the correct for the ESLint config ignores
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ export default [
}
},
{
ignores: ['build/', '.svelte-kit/', 'package/']
ignores: ['build/', '.svelte-kit/', 'dist/']
}
];
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ export default [
}
},
{
ignores: ['build/', '.svelte-kit/', 'package/']
ignores: ['build/', '.svelte-kit/', 'dist/']
}
];
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ export default [
}
},
{
ignores: ['build/', '.svelte-kit/', 'package/']
ignores: ['build/', '.svelte-kit/', 'dist/']
}
];
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ export default [
}
},
{
ignores: ['build/', '.svelte-kit/', 'package/']
ignores: ['build/', '.svelte-kit/', 'dist/']
}
];

0 comments on commit ef0aa0c

Please sign in to comment.