eslint-plugin-private-props
Assume all properties/methods that begin with an underscore and the handle
prefix (specific case for React components) are private and generate errors for unused or undeclared properties.
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-private-props
:
$ npm install eslint-plugin-private-props --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-private-props
globally.
Usage
Add private-props
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
Then configure the rules you want to use under the rules section.
Supported Rules
private-props/no-unused-or-undeclared
Disallow unused or undeclared private properties
private-props/no-use-outside
Disallow use of private properties outside of own object
Options
privateMatchers
Change the default set of matchers for private properties
Default: