starlint 0.1.2 → 0.1.3
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 +7 -7
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -17,20 +17,20 @@ 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 (12 MB)** | 108ms (
|
|
21
|
-
| date-fns | 1562 | **
|
|
22
|
-
| grafana | 6201 | **
|
|
20
|
+
| express | 141 | **13ms (12 MB)** | 108ms (110 MB) | 1.61s (256 MB) |
|
|
21
|
+
| date-fns | 1562 | **72ms (11 MB)** | 91ms (113 MB) | 4.79s (469 MB) |
|
|
22
|
+
| grafana | 6201 | **310ms (19 MB)** | 389ms (138 MB) | 31.31s (561 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 | 90ms (18 MB) | **71ms (108 MB)** | 1.
|
|
29
|
-
| date-fns | 1562 | 513ms (36 MB) | **138ms (
|
|
30
|
-
| grafana | 6201 | 3.
|
|
28
|
+
| express | 141 | 90ms (18 MB) | **71ms (108 MB)** | 1.79s (253 MB) |
|
|
29
|
+
| date-fns | 1562 | 513ms (36 MB) | **138ms (110 MB)** | 5.89s (460 MB) |
|
|
30
|
+
| grafana | 6201 | 3.26s (271 MB) | **690ms (154 MB)** | 4.79s (518 MB) |
|
|
31
31
|
</details>
|
|
32
32
|
|
|
33
|
-
*Last updated: 2026-03-
|
|
33
|
+
*Last updated: 2026-03-05. Benchmarked with [hyperfine](https://github.com/sharkdp/hyperfine) (3 warmup, 10+ runs).*
|
|
34
34
|
<!-- BENCHMARKS_END -->
|
|
35
35
|
|
|
36
36
|
## Flamegraph
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "starlint",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
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.3",
|
|
31
|
+
"@starlint/cli-linux-arm64-gnu": "0.1.3",
|
|
32
|
+
"@starlint/cli-darwin-x64": "0.1.3",
|
|
33
|
+
"@starlint/cli-darwin-arm64": "0.1.3",
|
|
34
|
+
"@starlint/cli-win32-x64-msvc": "0.1.3"
|
|
35
35
|
}
|
|
36
36
|
}
|