Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

eslint-plugin-max-len-2

andreineculau108MIT0.0.5

A secondary max-len rule, for soft limits.

eslint, eslintplugin, eslint-plugin, line, length, max-len

readme

max-len-2 (eslint plugin)

Ref: https://github.com/eslint/eslint/issues/6910

Usually I have a soft-limit of 80 characters per line, and a hard-limit of 120 characters per line.

Since eslint rules cannot set the error level (warn/error) themselves, this copy of the built-in "max-len" rule (that comes with your own eslint installation), allows you to define soft and hard limits in your .eslintrc.yaml like this:

  max-len:
    - error
    - code: 120
      ignoreComments: true
      ignoreUrls: true
  max-len-2/max-len-2:
    - warn
    - code: 80
      ignoreComments: true
      ignoreUrls: true

License

MIT