oxlint-react-compiler-experimental 0.0.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 +59 -0
- package/bin/oxlint +3 -0
- package/configuration_schema.json +800 -0
- package/dist/bindings.js +404 -0
- package/dist/cli.js +84 -0
- package/dist/config.js +16 -0
- package/dist/index.d.ts +735 -0
- package/dist/index.js +2 -0
- package/dist/js_config.js +66 -0
- package/dist/lint.js +22559 -0
- package/dist/oxlint.darwin-arm64.node +0 -0
- package/dist/plugins-dev.d.ts +4203 -0
- package/dist/plugins-dev.js +866 -0
- package/dist/plugins.js +23 -0
- package/dist/utils.js +44 -0
- package/dist/workspace.js +2 -0
- package/dist/workspace2.js +35 -0
- package/package.json +66 -0
package/README.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<br>
|
|
3
|
+
<br>
|
|
4
|
+
<a href="https://oxc.rs" target="_blank" rel="noopener noreferrer">
|
|
5
|
+
<picture>
|
|
6
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://oxc.rs/oxc-light.svg">
|
|
7
|
+
<source media="(prefers-color-scheme: light)" srcset="https://oxc.rs/oxc-dark.svg">
|
|
8
|
+
<img alt="Oxc logo" src="https://oxc.rs/oxc-dark.svg" height="60">
|
|
9
|
+
</picture>
|
|
10
|
+
</a>
|
|
11
|
+
<br>
|
|
12
|
+
<br>
|
|
13
|
+
<br>
|
|
14
|
+
</p>
|
|
15
|
+
|
|
16
|
+
<div align="center">
|
|
17
|
+
|
|
18
|
+
[![MIT licensed][license-badge]][license-url]
|
|
19
|
+
[![Build Status][ci-badge]][ci-url]
|
|
20
|
+
[![Code Coverage][code-coverage-badge]][code-coverage-url]
|
|
21
|
+
[![Sponsors][sponsors-badge]][sponsors-url]
|
|
22
|
+
|
|
23
|
+
[![Discord chat][discord-badge]][discord-url]
|
|
24
|
+
[![Playground][playground-badge]][playground-url]
|
|
25
|
+
|
|
26
|
+
[discord-badge]: https://img.shields.io/discord/1079625926024900739?logo=discord&label=Discord
|
|
27
|
+
[discord-url]: https://discord.gg/9uXCAwqQZW
|
|
28
|
+
[license-badge]: https://img.shields.io/badge/license-MIT-blue.svg
|
|
29
|
+
[license-url]: https://github.com/oxc-project/oxc/blob/main/LICENSE
|
|
30
|
+
[ci-badge]: https://github.com/oxc-project/oxc/actions/workflows/ci.yml/badge.svg?event=push&branch=main
|
|
31
|
+
[ci-url]: https://github.com/oxc-project/oxc/actions/workflows/ci.yml?query=event%3Apush+branch%3Amain
|
|
32
|
+
[npm-badge]: https://img.shields.io/npm/v/oxlint/latest?color=brightgreen
|
|
33
|
+
[npm-url]: https://npmx.dev/package/oxlint/v/latest
|
|
34
|
+
[code-size-badge]: https://img.shields.io/github/languages/code-size/oxc-project/oxc
|
|
35
|
+
[code-size-url]: https://github.com/oxc-project/oxc
|
|
36
|
+
[code-coverage-badge]: https://codecov.io/github/oxc-project/oxc/branch/main/graph/badge.svg
|
|
37
|
+
[code-coverage-url]: https://codecov.io/gh/oxc-project/oxc
|
|
38
|
+
[sponsors-badge]: https://img.shields.io/github/sponsors/Boshen
|
|
39
|
+
[sponsors-url]: https://github.com/sponsors/Boshen
|
|
40
|
+
[playground-badge]: https://img.shields.io/badge/Playground-blue?color=9BE4E0
|
|
41
|
+
[playground-url]: https://playground.oxc.rs/
|
|
42
|
+
|
|
43
|
+
</div>
|
|
44
|
+
|
|
45
|
+
# ⚓ Oxc
|
|
46
|
+
|
|
47
|
+
The Oxidation Compiler is creating a suite of high-performance tools for JavaScript and TypeScript.
|
|
48
|
+
|
|
49
|
+
## Oxlint
|
|
50
|
+
|
|
51
|
+
This is the linter for oxc.
|
|
52
|
+
|
|
53
|
+
See [usage instructions](https://oxc.rs/docs/guide/usage/linter).
|
|
54
|
+
|
|
55
|
+
Run
|
|
56
|
+
|
|
57
|
+
- `npx --yes oxlint@latest` in your JavaScript / TypeScript codebase and see it complete in milliseconds. No configurations are required.
|
|
58
|
+
- `npx oxlint@latest --help` for quick usage instructions.
|
|
59
|
+
- `npx oxlint@latest --rules` for the list of rules.
|
package/bin/oxlint
ADDED