Skip to content

betaorbust/eslint-plugin-pocket-fluff

Repository files navigation

eslint-plugin-pocket-fluff

Npm Version Node version requirements Node.js CI status

A collection of eslint rules.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-pocket-fluff:

$ npm install eslint-plugin-pocket-fluff --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-pocket-fluff globally.

Usage

Add pocket-fluff to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
	"plugins": ["pocket-fluff"]
}

Then configure the rules you want to use under the rules section in your .eslintrc file.

{
	"rules": {
		"pocket-fluff/no-jsx-spread": "error",
		"pocket-fluff/no-dead-code": "error"
	}
}

Current Rules

no-jsx-spread

Disallow the use of the JSX spread for perf and DX reasons. README

no-dead-code

Disallow code past its marked @removeby. README

no-reassigned-consts

Disallow Reassignments of consts and Const-named variables. README

no-react-scope-bound-assignment

Disallow reassigning external variables from inside react components. README

base-ten-numeric-literals

Disable octal, hex, and boolean numeric literals. README