brandongregoryscott / eslint-plugin-collation

ESLint plugin for making your code easier to read, with autofix and TypeScript support
https://eslint-plugin-collation.brandonscott.me
Apache License 2.0
4 stars 0 forks source link

Rule: `sort-exports` #5

Closed brandongregoryscott closed 1 year ago

brandongregoryscott commented 2 years ago

Implement a rule that alphabetically sorts named exports, ie:

export { isEmpty, hasValues, compact };

would be transformed to:

export { compact, hasValues, isEmpty };
brandongregoryscott commented 2 years ago

sort-exports/sort-exports can be referenced, but it doesn't currently have auto-fix support. Looks like the author might be working on that soon, though.