oxlint 1.68.0 → 1.69.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 +2 -0
- package/configuration_schema.json +12280 -2014
- package/dist/bindings.js +27 -28
- package/dist/index.d.ts +4306 -730
- package/dist/js_config.js +2 -3
- package/dist/lint.js +143 -135
- package/dist/plugins-dev.d.ts +45 -16
- package/dist/plugins-dev.js +1 -1
- package/package.json +20 -20
- package/dist/globals.js +0 -13
package/README.md
CHANGED
|
@@ -57,3 +57,5 @@ Run
|
|
|
57
57
|
- `npx --yes oxlint@latest` in your JavaScript / TypeScript codebase and see it complete in milliseconds. No configurations are required.
|
|
58
58
|
- `npx oxlint@latest --help` for quick usage instructions.
|
|
59
59
|
- `npx oxlint@latest --rules` for the list of rules.
|
|
60
|
+
- `npx skills add https://github.com/oxc-project/oxc --skill migrate-oxlint` to install the [`migrate-oxlint`](https://skills.sh/oxc-project/oxc/migrate-oxlint) skill, then run `/migrate-oxlint` to migrate from ESLint.
|
|
61
|
+
- See also [migrate from ESLint](https://oxc.rs/docs/guide/usage/linter/migrate-from-eslint.html).
|