I like this plugin idea which will auto-fix the member ordering inside interface but seem it would conflict to [member-order](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/member-ordering.md) because this plugin don't care the member type E.G. given below interface ```typescript interface Demo { b: string a() : void } ``` it would complain error in above interface because a is after b. But if fix it by move a before b, `member-ordering` would complain method should after attribute. Beside turn off either one, did it any suggestion can keep both running ?