0.0.1 • Published 8 years ago
eslint-plugin-wade v0.0.1
eslint-plugin-wade
Adds wade environment in eslint.
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-wade
:
$ npm install eslint-plugin-wade --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-wade
globally.
Usage
Add wade
to the plugins section of your .eslintrc
configuration file and add the wade
environment. You can omit the eslint-plugin-
prefix:
{
"plugins": ["wade"],
"env": {
"wade": true
}
}