oxlint-tsgolint 0.22.1 → 0.24.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 +3 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -145,6 +145,9 @@ The core architecture is stable and already powers Oxlint's type-aware linting m
|
|
|
145
145
|
|
|
146
146
|
Because `tsgolint` relies on `typescript-go`, its long-term stability evolves alongside TypeScript itself.
|
|
147
147
|
|
|
148
|
+
> [!NOTE]
|
|
149
|
+
> We are not currently accepting PRs for new rules beyond what `typescript-eslint` supports, so that we can focus our limited engineering capacity on the items listed above.
|
|
150
|
+
|
|
148
151
|
For detailed technical documentation, see [ARCHITECTURE.md](./ARCHITECTURE.md).
|
|
149
152
|
|
|
150
153
|
## Contributing
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.24.0",
|
|
3
3
|
"description": "High-performance type-aware TypeScript linter powered by typescript-go, for use with oxlint.",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "auvred <aauvred@gmail.com>",
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"tsgolint": "./bin/tsgolint.js"
|
|
15
15
|
},
|
|
16
16
|
"optionalDependencies": {
|
|
17
|
-
"@oxlint-tsgolint/win32-x64": "0.
|
|
18
|
-
"@oxlint-tsgolint/win32-arm64": "0.
|
|
19
|
-
"@oxlint-tsgolint/linux-x64": "0.
|
|
20
|
-
"@oxlint-tsgolint/linux-arm64": "0.
|
|
21
|
-
"@oxlint-tsgolint/darwin-x64": "0.
|
|
22
|
-
"@oxlint-tsgolint/darwin-arm64": "0.
|
|
17
|
+
"@oxlint-tsgolint/win32-x64": "0.24.0",
|
|
18
|
+
"@oxlint-tsgolint/win32-arm64": "0.24.0",
|
|
19
|
+
"@oxlint-tsgolint/linux-x64": "0.24.0",
|
|
20
|
+
"@oxlint-tsgolint/linux-arm64": "0.24.0",
|
|
21
|
+
"@oxlint-tsgolint/darwin-x64": "0.24.0",
|
|
22
|
+
"@oxlint-tsgolint/darwin-arm64": "0.24.0"
|
|
23
23
|
}
|
|
24
24
|
}
|