eslint-plugin-deprecate
v0.8.5
Published
[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)
Downloads
393,190
Maintainers
Readme
eslint-plugin-deprecate
This plugin helps you to refactor your codebase.
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-deprecate
:
$ npm install eslint-plugin-deprecate --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-deprecate
globally.
Usage
Add deprecate
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"deprecate"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"deprecate/rule-name": 2
}
}
Supported Rules
- deprecate/function: Warn about some function usage.
- deprecate/member-expression: Warn about some member expression usages.
- deprecate/import: Warn about some import/require usage.