JSPM

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

autofix some errors reported by eslint rules.

Package Exports

  • eslint-plugin-autofix

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-autofix) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

build status dependency status

eslint-plugin-autofix

Install & usage

$ npm i eslint-plugin-autofix -D

add prefix "autofix" to the rulename in eslintrc:

{
  "plugins": ["autofix"],
  "rules": {
    "autofix/no-debugger": "error"
  }
}

Supported rules

Name 🛠 Description
no-console 🛠 disallow the use of console
no-debugger 🛠 disallow the use of debugger
prefer-spread 🛠 require spread operators instead of .apply()

Acknowledgement