JSPM

eslint-plugin-only-warn

1.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 448080
  • Score
    100M100P100Q180157F
  • License MIT

Downgrade errors to warnings

Package Exports

  • eslint-plugin-only-warn
  • eslint-plugin-only-warn/src/only-warn.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-plugin-only-warn) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

eslint-plugin-only-warn

status

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-only-warn:

$ npm install eslint-plugin-only-warn --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-only-warn globally.

Usage

Add only-warn to the plugins section of your .eslintrc configuration file:

{
  "plugins": ["only-warn"]
}

Add --max-warnings=0 to the lint script in your package.json.

  "lint": "eslint --max-warnings=0 ...",

This will make eslint cli report an errorcode which can be detected in git hook or CI pipeline.

Tip: Use husky and lint-staged te prevent committing eslint warnings.

Why only warnings?

  • Don't waste time thinking or discussing about if it should be an error or a warning, focus on enabling of disabling a rule
  • Warnings look different in editors, this allows you to quickly see that some tweaking is required, but your code still runs (eslint rules generally don't block the code from executing and fatal errors are still reported as error)
  • Prevents noise, disallowing warnings to be committed in a codebase prevents clutter in the output of eslint (use special eslint comments for the instances when you need an exception to the rules)