oxlint-tsgolint 0.11.0 → 0.11.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +8 -7
package/README.md CHANGED
@@ -110,7 +110,7 @@ We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md) for:
110
110
 
111
111
  ## Implemented Rules
112
112
 
113
- Implemented 43/59.
113
+ Implemented 45/59.
114
114
 
115
115
  - [ ] [consistent-return](https://typescript-eslint.io/rules/consistent-return)
116
116
  - [ ] [consistent-type-exports](https://typescript-eslint.io/rules/consistent-type-exports)
@@ -122,8 +122,6 @@ Implemented 43/59.
122
122
  - [ ] [no-unnecessary-type-parameters](https://typescript-eslint.io/rules/no-unnecessary-type-parameters)
123
123
  - [ ] [prefer-destructuring](https://typescript-eslint.io/rules/prefer-destructuring)
124
124
  - [ ] [prefer-find](https://typescript-eslint.io/rules/prefer-find)
125
- - [ ] [prefer-nullish-coalescing](https://typescript-eslint.io/rules/prefer-nullish-coalescing)
126
- - [ ] [prefer-optional-chain](https://typescript-eslint.io/rules/prefer-optional-chain)
127
125
  - [ ] [prefer-readonly](https://typescript-eslint.io/rules/prefer-readonly)
128
126
  - [ ] [prefer-readonly-parameter-types](https://typescript-eslint.io/rules/prefer-readonly-parameter-types)
129
127
  - [ ] [prefer-regexp-exec](https://typescript-eslint.io/rules/prefer-regexp-exec)
@@ -157,6 +155,8 @@ Implemented 43/59.
157
155
  - [x] [non-nullable-type-assertion-style](https://typescript-eslint.io/rules/non-nullable-type-assertion-style)
158
156
  - [x] [only-throw-error](https://typescript-eslint.io/rules/only-throw-error)
159
157
  - [x] [prefer-includes](https://typescript-eslint.io/rules/prefer-includes)
158
+ - [x] [prefer-nullish-coalescing](https://typescript-eslint.io/rules/prefer-nullish-coalescing)
159
+ - [x] [prefer-optional-chain](https://typescript-eslint.io/rules/prefer-optional-chain)
160
160
  - [x] [prefer-promise-reject-errors](https://typescript-eslint.io/rules/prefer-promise-reject-errors)
161
161
  - [x] [prefer-reduce-type-parameter](https://typescript-eslint.io/rules/prefer-reduce-type-parameter)
162
162
  - [x] [prefer-return-this-type](https://typescript-eslint.io/rules/prefer-return-this-type)
package/package.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "version": "0.11.0",
2
+ "version": "0.11.2",
3
+ "description": "High-performance type-aware TypeScript linter powered by typescript-go, for use with oxlint.",
3
4
  "license": "MIT",
4
5
  "author": "auvred <aauvred@gmail.com>",
5
6
  "repository": "github:oxc-project/tsgolint",
@@ -13,11 +14,11 @@
13
14
  "tsgolint": "./bin/tsgolint.js"
14
15
  },
15
16
  "optionalDependencies": {
16
- "@oxlint-tsgolint/win32-x64": "0.11.0",
17
- "@oxlint-tsgolint/win32-arm64": "0.11.0",
18
- "@oxlint-tsgolint/linux-x64": "0.11.0",
19
- "@oxlint-tsgolint/linux-arm64": "0.11.0",
20
- "@oxlint-tsgolint/darwin-x64": "0.11.0",
21
- "@oxlint-tsgolint/darwin-arm64": "0.11.0"
17
+ "@oxlint-tsgolint/win32-x64": "0.11.2",
18
+ "@oxlint-tsgolint/win32-arm64": "0.11.2",
19
+ "@oxlint-tsgolint/linux-x64": "0.11.2",
20
+ "@oxlint-tsgolint/linux-arm64": "0.11.2",
21
+ "@oxlint-tsgolint/darwin-x64": "0.11.2",
22
+ "@oxlint-tsgolint/darwin-arm64": "0.11.2"
22
23
  }
23
24
  }