• Vesa Laakso's avatar
    Exempt variables prefixed with underscore from no-unused-vars rule · 29a6eb86
    Vesa Laakso authored
    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>;
        }
    29a6eb86