npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

eslint-plugin-reselect

v6.6.0

Published

eslint rules to enforce best practices in selectors made with reselect

Downloads

473

Readme

eslint-plugin-reselect Build Status Dependency Status devDependency Status

Enforce best practices in selectors written with Reselect

Installation

$ npm i eslint-plugin-reselect

Configuration

Add plugins section and specify eslint-plugin-reselect as a plugin.

Add rules below in rules section.

{
  "plugins": [
    "reselect"
  ],
  "rules": {
    "reselect/first-param-name": "error",
    "reselect/maximum-arity": "error",
    "reselect/second-param-destructured": "error",
    "reselect/call": "error",
    "reselect/prefer-create-selector": "warn"
  }
}

List of supported rules

  • reselect/first-param-name: First param must be named state. Name can be configured. Here is an example with fullState:
"rules": {
	...
    "reselect/first-param-name": ["error", "fullState"],
    ...
  • reselect/maximum-arity: Maximum arity of 2. Arity can be modified like this :
"rules": {
	...
    "reselect/maximum-arity": ["error", 3],
    ...
  • reselect/second-param-destructured: Second argument must be a destructuring object.
  • reselect/call: When calling a selector function, second argument must be an object declaration. Selector call is identified like this:
    • Called function begins with get, unless otherwise configured in eslint settings
    • Function called with 2 parameters
    • First parameter must be state, unless otherwise configured in eslint settings
  • reselect/prefer-create-selector: Instead of use selector in selector, prefer use of createSelector function.

All rules except reselect/call are triggered when :

  • reselect is imported
  • function name begins with get, or is otherwise configured in eslint settings
  • function at root level (exported or not)
  • functions in createSelector calls (not the latest)

If you don't use Reselect in your selector file, you can just import Reselect like this to enable rules

import 'reselect';

All

This plugin also exports an all configuration that includes every available rule.

{
  "plugins": [
    "reselect"
  ],
  "extends": ["plugin:reselect/all"]
}

Recommended

This plugin exports a recommended configuration that enforce React good practices.

To enable this configuration use the extends property in your .eslintrc config file:

{
  "extends": ["plugin:reselect/recommended"]
}

See ESLint documentation for more information about extending configuration files.

The rules enabled in this configuration are:

  • reselect/first-param-name
  • reselect/maximum-arity
  • reselect/prefer-create-selector

License

eslint-plugin-reselect is licensed under the MIT License.