eslint-plugin-sort-exports
eslint-plugin-sort-exports copied to clipboard
Should not put export of used member before declaration type for that member
export class StoreState {
}
export const state: StoreState = new StoreState();
this plugin tries to move export const state to the first place - which leads to typescript error: 'Class StoreState used before its declaration.'