oxlint-tsgolint 0.12.0 → 0.12.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 +5 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ Key highlights:
|
|
|
23
23
|
This project originated in [typescript-eslint/tsgolint](https://github.com/typescript-eslint/tsgolint). Fork permission is granted by @auvred.
|
|
24
24
|
|
|
25
25
|
> [!IMPORTANT]
|
|
26
|
-
> **tsgolint** is
|
|
26
|
+
> **tsgolint** is currently in alpha.
|
|
27
27
|
> This is a community effort. Feel free to ask to be assigned to any of the [good first issues](https://github.com/oxc-project/tsgolint/contribute).
|
|
28
28
|
|
|
29
29
|
## Installation & Usage
|
|
@@ -55,7 +55,7 @@ Configure type-aware rules in `.oxlintrc.json`:
|
|
|
55
55
|
}
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
-
Over
|
|
58
|
+
Over 50 TypeScript-specific type-aware rules are available. For detailed setup and configuration, see the [Oxlint Type-Aware Linting guide](https://oxc.rs/docs/guide/usage/linter/type-aware.html).
|
|
59
59
|
|
|
60
60
|
> [!NOTE]
|
|
61
61
|
> Non-type-aware TypeScript rules can be found in [Oxlint's TypeScript rules](https://oxc.rs/docs/guide/usage/linter/rules.html) under the TypeScript source.
|
|
@@ -107,11 +107,13 @@ We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md) for:
|
|
|
107
107
|
|
|
108
108
|
## Implemented Rules
|
|
109
109
|
|
|
110
|
-
Implemented 56/
|
|
110
|
+
Implemented 56/61.
|
|
111
111
|
|
|
112
112
|
- [ ] [consistent-type-exports](https://typescript-eslint.io/rules/consistent-type-exports)
|
|
113
113
|
- [ ] [naming-convention](https://typescript-eslint.io/rules/naming-convention)
|
|
114
|
+
- [ ] [no-useless-default-assignment](https://typescript-eslint.io/rules/no-useless-default-assignment)
|
|
114
115
|
- [ ] [prefer-destructuring](https://typescript-eslint.io/rules/prefer-destructuring)
|
|
116
|
+
- [ ] [strict-void-return](https://typescript-eslint.io/rules/strict-void-return)
|
|
115
117
|
- [x] [await-thenable](https://typescript-eslint.io/rules/await-thenable)
|
|
116
118
|
- [x] [consistent-return](https://typescript-eslint.io/rules/consistent-return)
|
|
117
119
|
- [x] [dot-notation](https://typescript-eslint.io/rules/dot-notation)
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.12.
|
|
2
|
+
"version": "0.12.2",
|
|
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.12.
|
|
18
|
-
"@oxlint-tsgolint/win32-arm64": "0.12.
|
|
19
|
-
"@oxlint-tsgolint/linux-x64": "0.12.
|
|
20
|
-
"@oxlint-tsgolint/linux-arm64": "0.12.
|
|
21
|
-
"@oxlint-tsgolint/darwin-x64": "0.12.
|
|
22
|
-
"@oxlint-tsgolint/darwin-arm64": "0.12.
|
|
17
|
+
"@oxlint-tsgolint/win32-x64": "0.12.2",
|
|
18
|
+
"@oxlint-tsgolint/win32-arm64": "0.12.2",
|
|
19
|
+
"@oxlint-tsgolint/linux-x64": "0.12.2",
|
|
20
|
+
"@oxlint-tsgolint/linux-arm64": "0.12.2",
|
|
21
|
+
"@oxlint-tsgolint/darwin-x64": "0.12.2",
|
|
22
|
+
"@oxlint-tsgolint/darwin-arm64": "0.12.2"
|
|
23
23
|
}
|
|
24
24
|
}
|