A plugin to forbid the usage of sessionStorage and localStorage
npm install eslint-plugin-no-storageA plugin to forbid the usage of sessionStorage and localStorage
You'll first need to install ESLint:
```
$ npm i eslint --save-dev
Next, install eslint-plugin-no-storage:
``
$ npm install eslint-plugin-no-storage --save-dev
Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-no-storage globally.
Add no-storage to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
`json`
{
"plugins": [
"no-storage"
]
}
Then configure the rules you want to use under the rules section.
`json``
{
"rules": {
"no-storage/no-browser-storage": 2
}
}
* Fill in provided rules here