IanVS / prettier-plugin-sort-imports

An opinionated but flexible prettier plugin to sort import statements
Apache License 2.0
1.02k stars 25 forks source link

Support explicit type sorting #44

Closed IanVS closed 2 years ago

IanVS commented 2 years ago

Closes https://github.com/IanVS/prettier-plugin-sort-imports/issues/35

Adapted from https://github.com/trivago/prettier-plugin-sort-imports/pull/153, by @Xenfo.

This adds a new special string, <TYPES> that can be added to the importOrder array. When used, it will cause type imports to be sorted as specified by its location in the array.

Notes:

IanVS commented 2 years ago

@fbartho @blutorange I'd love to get your thoughts on this change before merging.