How can I disable alphabetical ordering of members in object literal syntax?
Example:
function receiveLogin(user) {
return {
type: LOGIN_SUCCESS,
isFetching: false,
isAuthenticated: true,
id_token: user.id_token,
};
}
I want to have the type as the first item.
tslint.json
to disable this is right there in the error message. – Infelicity