oxlint-tsgolint 0.11.4 → 0.12.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 +12 -15
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -85,9 +85,6 @@ See [benchmarks](./benchmarks/README.md) for detailed performance comparisons.
|
|
|
85
85
|
### In Development 🚧
|
|
86
86
|
|
|
87
87
|
- Additional typescript-eslint rules
|
|
88
|
-
- Disable Comments
|
|
89
|
-
- Rule Configuration
|
|
90
|
-
- IDE usage
|
|
91
88
|
|
|
92
89
|
## Architecture
|
|
93
90
|
|
|
@@ -110,23 +107,14 @@ We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md) for:
|
|
|
110
107
|
|
|
111
108
|
## Implemented Rules
|
|
112
109
|
|
|
113
|
-
Implemented
|
|
110
|
+
Implemented 56/59.
|
|
114
111
|
|
|
115
|
-
- [ ] [consistent-return](https://typescript-eslint.io/rules/consistent-return)
|
|
116
112
|
- [ ] [consistent-type-exports](https://typescript-eslint.io/rules/consistent-type-exports)
|
|
117
|
-
- [ ] [dot-notation](https://typescript-eslint.io/rules/dot-notation)
|
|
118
113
|
- [ ] [naming-convention](https://typescript-eslint.io/rules/naming-convention)
|
|
119
|
-
- [ ] [no-unnecessary-condition](https://typescript-eslint.io/rules/no-unnecessary-condition)
|
|
120
|
-
- [ ] [no-unnecessary-qualifier](https://typescript-eslint.io/rules/no-unnecessary-qualifier)
|
|
121
|
-
- [ ] [no-unnecessary-type-conversion](https://typescript-eslint.io/rules/no-unnecessary-type-conversion)
|
|
122
|
-
- [ ] [no-unnecessary-type-parameters](https://typescript-eslint.io/rules/no-unnecessary-type-parameters)
|
|
123
114
|
- [ ] [prefer-destructuring](https://typescript-eslint.io/rules/prefer-destructuring)
|
|
124
|
-
- [ ] [prefer-find](https://typescript-eslint.io/rules/prefer-find)
|
|
125
|
-
- [ ] [prefer-readonly](https://typescript-eslint.io/rules/prefer-readonly)
|
|
126
|
-
- [ ] [prefer-readonly-parameter-types](https://typescript-eslint.io/rules/prefer-readonly-parameter-types)
|
|
127
|
-
- [ ] [prefer-regexp-exec](https://typescript-eslint.io/rules/prefer-regexp-exec)
|
|
128
|
-
- [ ] [prefer-string-starts-ends-with](https://typescript-eslint.io/rules/prefer-string-starts-ends-with)
|
|
129
115
|
- [x] [await-thenable](https://typescript-eslint.io/rules/await-thenable)
|
|
116
|
+
- [x] [consistent-return](https://typescript-eslint.io/rules/consistent-return)
|
|
117
|
+
- [x] [dot-notation](https://typescript-eslint.io/rules/dot-notation)
|
|
130
118
|
- [x] [no-array-delete](https://typescript-eslint.io/rules/no-array-delete)
|
|
131
119
|
- [x] [no-base-to-string](https://typescript-eslint.io/rules/no-base-to-string)
|
|
132
120
|
- [x] [no-confusing-void-expression](https://typescript-eslint.io/rules/no-confusing-void-expression)
|
|
@@ -141,9 +129,13 @@ Implemented 45/59.
|
|
|
141
129
|
- [x] [no-mixed-enums](https://typescript-eslint.io/rules/no-mixed-enums)
|
|
142
130
|
- [x] [no-redundant-type-constituents](https://typescript-eslint.io/rules/no-redundant-type-constituents)
|
|
143
131
|
- [x] [no-unnecessary-boolean-literal-compare](https://typescript-eslint.io/rules/no-unnecessary-boolean-literal-compare)
|
|
132
|
+
- [x] [no-unnecessary-condition](https://typescript-eslint.io/rules/no-unnecessary-condition)
|
|
133
|
+
- [x] [no-unnecessary-qualifier](https://typescript-eslint.io/rules/no-unnecessary-qualifier)
|
|
144
134
|
- [x] [no-unnecessary-template-expression](https://typescript-eslint.io/rules/no-unnecessary-template-expression)
|
|
145
135
|
- [x] [no-unnecessary-type-arguments](https://typescript-eslint.io/rules/no-unnecessary-type-arguments)
|
|
146
136
|
- [x] [no-unnecessary-type-assertion](https://typescript-eslint.io/rules/no-unnecessary-type-assertion)
|
|
137
|
+
- [x] [no-unnecessary-type-conversion](https://typescript-eslint.io/rules/no-unnecessary-type-conversion)
|
|
138
|
+
- [x] [no-unnecessary-type-parameters](https://typescript-eslint.io/rules/no-unnecessary-type-parameters)
|
|
147
139
|
- [x] [no-unsafe-argument](https://typescript-eslint.io/rules/no-unsafe-argument)
|
|
148
140
|
- [x] [no-unsafe-assignment](https://typescript-eslint.io/rules/no-unsafe-assignment)
|
|
149
141
|
- [x] [no-unsafe-call](https://typescript-eslint.io/rules/no-unsafe-call)
|
|
@@ -154,12 +146,17 @@ Implemented 45/59.
|
|
|
154
146
|
- [x] [no-unsafe-unary-minus](https://typescript-eslint.io/rules/no-unsafe-unary-minus)
|
|
155
147
|
- [x] [non-nullable-type-assertion-style](https://typescript-eslint.io/rules/non-nullable-type-assertion-style)
|
|
156
148
|
- [x] [only-throw-error](https://typescript-eslint.io/rules/only-throw-error)
|
|
149
|
+
- [x] [prefer-find](https://typescript-eslint.io/rules/prefer-find)
|
|
157
150
|
- [x] [prefer-includes](https://typescript-eslint.io/rules/prefer-includes)
|
|
158
151
|
- [x] [prefer-nullish-coalescing](https://typescript-eslint.io/rules/prefer-nullish-coalescing)
|
|
159
152
|
- [x] [prefer-optional-chain](https://typescript-eslint.io/rules/prefer-optional-chain)
|
|
160
153
|
- [x] [prefer-promise-reject-errors](https://typescript-eslint.io/rules/prefer-promise-reject-errors)
|
|
154
|
+
- [x] [prefer-readonly](https://typescript-eslint.io/rules/prefer-readonly)
|
|
155
|
+
- [x] [prefer-readonly-parameter-types](https://typescript-eslint.io/rules/prefer-readonly-parameter-types)
|
|
161
156
|
- [x] [prefer-reduce-type-parameter](https://typescript-eslint.io/rules/prefer-reduce-type-parameter)
|
|
157
|
+
- [x] [prefer-regexp-exec](https://typescript-eslint.io/rules/prefer-regexp-exec)
|
|
162
158
|
- [x] [prefer-return-this-type](https://typescript-eslint.io/rules/prefer-return-this-type)
|
|
159
|
+
- [x] [prefer-string-starts-ends-with](https://typescript-eslint.io/rules/prefer-string-starts-ends-with)
|
|
163
160
|
- [x] [promise-function-async](https://typescript-eslint.io/rules/promise-function-async)
|
|
164
161
|
- [x] [related-getter-setter-pairs](https://typescript-eslint.io/rules/related-getter-setter-pairs)
|
|
165
162
|
- [x] [require-array-sort-compare](https://typescript-eslint.io/rules/require-array-sort-compare)
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.12.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.12.0",
|
|
18
|
+
"@oxlint-tsgolint/win32-arm64": "0.12.0",
|
|
19
|
+
"@oxlint-tsgolint/linux-x64": "0.12.0",
|
|
20
|
+
"@oxlint-tsgolint/linux-arm64": "0.12.0",
|
|
21
|
+
"@oxlint-tsgolint/darwin-x64": "0.12.0",
|
|
22
|
+
"@oxlint-tsgolint/darwin-arm64": "0.12.0"
|
|
23
23
|
}
|
|
24
24
|
}
|