Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump eslint-plugin-svelte version to fix linting bug
In version 2.46.1, which we previously used, eslint couldn't handle svelte each blocks without 'as'. We use on of these blocks on the project members settings page (src/routes/project/[projectId]/settings/members/+page.svelte): ```svelte {#each { length: numberOfSkeletons }, i} <ProjectMemberListEntrySkeleton /> {#if i < numberOfSkeletons - 1} <Separator /> {/if} {/each} ``` This was reported in sveltejs/eslint-plugin-svelte#953 and fixed in version 3.0.0-next.5. Now eslint works again with our codebase.
- Loading branch information