Files
create-react-app/config
Vesa Laakso e333b8b86c Exempt variables prefixed with underscore from no-unused-vars rule (#640)
* Split no-unused-vars ESLint config to multiple lines

* Exempt variables prefixed with underscore from no-unused-vars rule

This is useful when e.g. using object spread operator to remove only a
certain field from the object.

For example, this can be used to ignore a property from React
component's `this.props`:

    render() {
        const { someAttribute: _unused, ...rest } = this.props;
        return <pre>{ JSON.stringify(rest) }</pre>;
    }
2016-09-17 00:38:42 +03:00
..
2016-07-22 12:32:12 +01:00
2016-09-02 17:10:29 +01:00