Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request: alphabetise functions in a module index. #52

Open
geoidesic opened this issue Mar 29, 2024 · 0 comments
Open

Feature Request: alphabetise functions in a module index. #52

geoidesic opened this issue Mar 29, 2024 · 0 comments

Comments

@geoidesic
Copy link

I think the title is self explanatory.. but in case not. Take this:

export const roleId = (state, getters) => {
  return
};

export const role = (state, getters) => {
  return 
};

export const roleOption = (state, getters) => {
  return
};
export const hasMissingColumnsForContactType =
  (state, getters) => (contactType) =>
    ()(
      return;
    );

And make it like this:


export const hasMissingColumnsForContactType =
  (state, getters) => (contactType) =>
    ()(
      return;
    );
    
export const role = (state, getters) => {
  return 
};

export const roleId = (state, getters) => {
  return
};

export const roleOption = (state, getters) => {
  return
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant