eslint plugin no http link, https link is ok
npm install eslint-plugin-no-httpeslint plugin no http link, https link is ok
You'll first need to install ESLint:
```
$ npm i eslint --save-dev
Next, install eslint-plugin-no-http:
``
$ npm install eslint-plugin-no-http --save-dev
Add no-http to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
`json`
{
"plugins": [
"no-http"
]
}
Then configure the rules you want to use under the rules section.
`json``
{
"rules": {
"no-http/rule-name": 2
}
}