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

Fix vue 2.7 support #173

Closed IanVS closed 3 weeks ago

IanVS commented 3 weeks ago

Fixes https://github.com/IanVS/prettier-plugin-sort-imports/issues/162

Older versions (not sure which ones exactly) of vue/compiler-sfc do not include a loc property on each block, but rather give the offsets directly on the block itself. This accounts for those differences, and causes the reproduction provided in the issue to succeed.

IanVS commented 3 weeks ago

Thanks for the reviews!