eslint-config-un 0.4.1 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -6
- package/dist/index.cjs +199 -199
- package/dist/index.d.cts +3602 -3664
- package/dist/index.d.ts +3602 -3664
- package/dist/index.js +200 -204
- package/package.json +31 -34
package/README.md
CHANGED
|
@@ -85,12 +85,6 @@ But applying certain rules for code blocks might not be desirable because some o
|
|
|
85
85
|
|
|
86
86
|
## Troubleshooting
|
|
87
87
|
|
|
88
|
-
### TypeError: Key `rules`: Key `disable-autofix/<rule name>`: Could not find `<rule name>` in plugin `disable-autofix`
|
|
89
|
-
|
|
90
|
-
We disable autofix for some rules in this package via `eslint-plugin-disable-autofix`. However, it requires all the configs/plugins packages to be hoisted (installed to the top level of `node_modules`). You might need to reinstall this package, re-create `node_modules` directory (do not delete your lock file!) or set `shamefully-hoist=true` in your `.npmrc` if you're using pnpm. Sometimes you'll need to manually install some packages refused to be hoisted (happens with `@typescript-eslint/eslint-plugin`: `npm i @typescript-eslint/eslint-plugin -D --legacy-peer-deps`).
|
|
91
|
-
|
|
92
|
-
This error could also happen if a dependency of this package is installed in your project separately.
|
|
93
|
-
|
|
94
88
|
### TypeError: Key `languageOptions`: Key `globals`: Global `AudioWorkletGlobalScope ` has leading or trailing whitespace.
|
|
95
89
|
|
|
96
90
|
Install `globals` package as a dev dependency.
|