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
eslint-plugin-autofix
Install & usage
$ npm i eslint-plugin-autofix -Dadd 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() |