oxlint-tsgolint 0.23.0 → 0.25.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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. 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
@@ -240,3 +243,11 @@ Implemented 59/61.
240
243
  [ci-url]: https://github.com/oxc-project/tsgolint/actions/workflows/ci.yml
241
244
  [discord-badge]: https://img.shields.io/discord/1079625926024900739?logo=discord&label=Discord
242
245
  [discord-url]: https://discord.gg/9uXCAwqQZW
246
+
247
+ # [Sponsored By](https://oxc.rs/sponsor)
248
+
249
+ <p align="center">
250
+ <a href="https://oxc.rs/sponsor">
251
+ <img src="https://raw.githubusercontent.com/oxc-project/sponsors/main/sponsors.svg" alt="Our sponsors" />
252
+ </a>
253
+ </p>
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.23.0",
2
+ "version": "0.25.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.23.0",
18
- "@oxlint-tsgolint/win32-arm64": "0.23.0",
19
- "@oxlint-tsgolint/linux-x64": "0.23.0",
20
- "@oxlint-tsgolint/linux-arm64": "0.23.0",
21
- "@oxlint-tsgolint/darwin-x64": "0.23.0",
22
- "@oxlint-tsgolint/darwin-arm64": "0.23.0"
17
+ "@oxlint-tsgolint/win32-x64": "0.25.0",
18
+ "@oxlint-tsgolint/win32-arm64": "0.25.0",
19
+ "@oxlint-tsgolint/linux-x64": "0.25.0",
20
+ "@oxlint-tsgolint/linux-arm64": "0.25.0",
21
+ "@oxlint-tsgolint/darwin-x64": "0.25.0",
22
+ "@oxlint-tsgolint/darwin-arm64": "0.25.0"
23
23
  }
24
24
  }