IanVS / prettier-plugin-sort-imports

An opinionated but flexible prettier plugin to sort import statements
Apache License 2.0
892 stars 21 forks source link

Svelte import sort #152

Closed secondfry closed 4 months ago

secondfry commented 4 months ago

It does not help with <script lang="ts">. I will fix it and update the PR.

secondfry commented 4 months ago

Apparently I was mistaken – I thought that plugin does not work due to the fact that it didn't sort imports in such scenario:

import A from '../A.svelte';

import './app.css';

import B from 'svelte';

Plugin does indeed work and splits imports into chunks and does not sort around side effect imports. Thus this PR is unneeded. Closing it.