1.0.7 • Published 3 years ago

eslint-plugin-workchat v1.0.7

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

eslint-plugin-workchat

An ESLint plugin containing the configuration used by Workchat as well as support for custom rules specific to the Workchat 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());
    };
}
1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago