starlint 0.1.2 → 0.1.4
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 | **
|
|
21
|
-
| date-fns | 1562 | **
|
|
22
|
-
| grafana | 6201 | **
|
|
20
|
+
| express | 141 | **14ms (12 MB)** | 115ms (107 MB) | 1.70s (255 MB) |
|
|
21
|
+
| date-fns | 1562 | **75ms (11 MB)** | 96ms (111 MB) | 5.02s (433 MB) |
|
|
22
|
+
| grafana | 6201 | **315ms (18 MB)** | 397ms (136 MB) | 35.63s (543 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 | 92ms (18 MB) | **74ms (106 MB)** | 1.90s (271 MB) |
|
|
29
|
+
| date-fns | 1562 | 519ms (36 MB) | **144ms (108 MB)** | 6.51s (454 MB) |
|
|
30
|
+
| grafana | 6201 | 3.31s (270 MB) | **717ms (150 MB)** | 5.33s (529 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.4",
|
|
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.4",
|
|
31
|
+
"@starlint/cli-linux-arm64-gnu": "0.1.4",
|
|
32
|
+
"@starlint/cli-darwin-x64": "0.1.4",
|
|
33
|
+
"@starlint/cli-darwin-arm64": "0.1.4",
|
|
34
|
+
"@starlint/cli-win32-x64-msvc": "0.1.4"
|
|
35
35
|
}
|
|
36
36
|
}
|