Closed
Description
Description
It would be great it a rule existed where interfaces and enum keys can be sorted.
If this is not considered a thing that might be added, feel free to close this issue
Fail
interface A {
b: string;
a: string;
}
// eg: Expected a to come before b
Pass
interface A {
a: string;
b: string;
}