@feinote/eslint-config-mattermost

1.0.0 • Public • Published

eslint-plugin-mattermost

An ESLint plugin containing the configuration used by Mattermost as well as support for custom rules specific to the Mattermost code base.

More information on our style guide is available here.

Custom Rules

no-dispatch-getstate

Prevents passing a redux store's getState into its dispatch as an unnecessary second argument.

We started doing this accidentally at some point because of a misunderstanding about how redux-thunk worked, so this stops anyone from making that same mistake again.

Examples of incorrect code for this rule:

export function someAction() {
    return (dispatch, getState) => {
        dispatch(doSomething(), getState);
    };
}

Examples of correct code for this rule:

export function someAction() {
    return (dispatch) => {
        dispatch(doSomething());
    };
}

Readme

Keywords

none

Package Sidebar

Install

npm i @feinote/eslint-config-mattermost

Weekly Downloads

1

Version

1.0.0

License

Apache 2.0

Unpacked Size

27.3 kB

Total Files

8

Last publish

Collaborators

  • jacklicn