starlint 0.1.0 → 0.1.2
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 +6 -6
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -17,17 +17,17 @@ Compared against [oxlint](https://oxc.rs) and [eslint](https://eslint.org) on re
|
|
|
17
17
|
|
|
18
18
|
| Corpus | Files | starlint | oxlint | eslint |
|
|
19
19
|
|--------|------:|----------|--------|--------|
|
|
20
|
-
| express | 141 | **13ms (
|
|
21
|
-
| date-fns | 1562 | **
|
|
22
|
-
| grafana | 6201 | **
|
|
20
|
+
| express | 141 | **13ms (12 MB)** | 108ms (109 MB) | 1.43s (253 MB) |
|
|
21
|
+
| date-fns | 1562 | **71ms (11 MB)** | 90ms (113 MB) | 4.74s (468 MB) |
|
|
22
|
+
| grafana | 6201 | **309ms (18 MB)** | 390ms (135 MB) | 30.66s (547 MB) |
|
|
23
23
|
<details>
|
|
24
24
|
<summary>Full defaults (all rules enabled per tool)</summary>
|
|
25
25
|
|
|
26
26
|
| Corpus | Files | starlint | oxlint | eslint |
|
|
27
27
|
|--------|------:|----------|--------|--------|
|
|
28
|
-
| express | 141 |
|
|
29
|
-
| date-fns | 1562 |
|
|
30
|
-
| grafana | 6201 | 3.
|
|
28
|
+
| express | 141 | 90ms (18 MB) | **71ms (108 MB)** | 1.77s (254 MB) |
|
|
29
|
+
| date-fns | 1562 | 513ms (36 MB) | **138ms (112 MB)** | 5.99s (446 MB) |
|
|
30
|
+
| grafana | 6201 | 3.28s (272 MB) | **687ms (152 MB)** | 4.82s (514 MB) |
|
|
31
31
|
</details>
|
|
32
32
|
|
|
33
33
|
*Last updated: 2026-03-04. Benchmarked with [hyperfine](https://github.com/sharkdp/hyperfine) (3 warmup, 10+ runs).*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "starlint",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A fast, Rust-based JavaScript/TypeScript linter",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"node": ">=14"
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@starlint/cli-linux-x64-gnu": "0.1.
|
|
31
|
-
"@starlint/cli-linux-arm64-gnu": "0.1.
|
|
32
|
-
"@starlint/cli-darwin-x64": "0.1.
|
|
33
|
-
"@starlint/cli-darwin-arm64": "0.1.
|
|
34
|
-
"@starlint/cli-win32-x64-msvc": "0.1.
|
|
30
|
+
"@starlint/cli-linux-x64-gnu": "0.1.2",
|
|
31
|
+
"@starlint/cli-linux-arm64-gnu": "0.1.2",
|
|
32
|
+
"@starlint/cli-darwin-x64": "0.1.2",
|
|
33
|
+
"@starlint/cli-darwin-arm64": "0.1.2",
|
|
34
|
+
"@starlint/cli-win32-x64-msvc": "0.1.2"
|
|
35
35
|
}
|
|
36
36
|
}
|