Upgrade warnings to errors
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-only-error:
$ npm install eslint-plugin-only-error --save-dev
Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-only-error globally.
Add only-error to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"only-error"
]
}This plugin is based on eslint-plugin-only-warn by Bob Fanger.