@aminya/eslint-plugin-only-warn
v1.2.2
Published
Downgrade errors to warnings with flexibility
Maintainers
Readme
@aminya/eslint-plugin-only-warn
Downgrade errors to warnings with flexibility. This fork has more features than the original plugin:
exclude-idoption: a regex pattern to exclude some of the plugins or rulesfatal-as-warningoption: an option to make fatal errors a warning
Installation
npm install eslint-plugin-only-warn@npm:@aminya/eslint-plugin-only-warn --save-devor in package.json:
"devDependencies": {
"eslint-plugin-only-warn": "npm:@aminya/eslint-plugin-only-warn@^1.2.1",
}Note: If you installed ESLint globally (using the -g flag) then you must also use -g for the above command.
Usage
Add only-warn to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"only-warn"
]
}Settings
exclude-id
You can provide a regex string to exclude some of the rule IDs (a full rule name or the plugin name). You can separate each pattern by |.
{
"plugins": [
"only-warn"
],
"settings": {
"only-warn": {
"exclude-id": "no-unused-vars|@typescript-eslint"
}
}
}fatal-as-warning
Downgrade fatal errors to warning if 'fatal-as-warning' is enabled in the settings. However, it is recommended that you don't enable this. It is false by default.
{
"plugins": [
"only-warn"
],
"settings": {
"only-warn": {
"fatal-as-warning": true
}
}
}