leo-buneev / eslint-plugin-sort-keys-fix

Fork of https://eslint.org/docs/rules/sort-keys that allows automatic fixing
95 stars 22 forks source link

Does not sort TypeScript types #16

Closed electrovir closed 4 years ago

electrovir commented 4 years ago

Example:

type MyType = {
    q: string;
    a: string;
};

It doesn't get sorted or even flagged as an error.

electrovir commented 4 years ago

The eslint-plugin-typescript-sort-keys plugin takes care of this!