oxlint-tsgolint 0.5.0 → 0.6.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 +6 -3
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -7,6 +7,7 @@
7
7
  [![MIT licensed][license-badge]][license-url]
8
8
  [![Build Status][ci-badge]][ci-url]
9
9
  [![Discord chat][discord-badge]][discord-url]
10
+ [![npm version][npm-badge]][npm-url]
10
11
 
11
12
  </div>
12
13
 
@@ -104,13 +105,12 @@ We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md) for:
104
105
  - How to implement new rules
105
106
  - Code style and contribution workflow
106
107
 
107
- ## Implemented Rules (40/59)
108
+ ## Implemented Rules (42/59)
108
109
 
109
110
  - [ ] [consistent-return](https://typescript-eslint.io/rules/consistent-return)
110
111
  - [ ] [consistent-type-exports](https://typescript-eslint.io/rules/consistent-type-exports)
111
112
  - [ ] [dot-notation](https://typescript-eslint.io/rules/dot-notation)
112
113
  - [ ] [naming-convention](https://typescript-eslint.io/rules/naming-convention)
113
- - [ ] [no-deprecated](https://typescript-eslint.io/rules/no-deprecated)
114
114
  - [ ] [no-unnecessary-condition](https://typescript-eslint.io/rules/no-unnecessary-condition)
115
115
  - [ ] [no-unnecessary-qualifier](https://typescript-eslint.io/rules/no-unnecessary-qualifier)
116
116
  - [ ] [no-unnecessary-type-conversion](https://typescript-eslint.io/rules/no-unnecessary-type-conversion)
@@ -124,11 +124,11 @@ We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md) for:
124
124
  - [ ] [prefer-readonly-parameter-types](https://typescript-eslint.io/rules/prefer-readonly-parameter-types)
125
125
  - [ ] [prefer-regexp-exec](https://typescript-eslint.io/rules/prefer-regexp-exec)
126
126
  - [ ] [prefer-string-starts-ends-with](https://typescript-eslint.io/rules/prefer-string-starts-ends-with)
127
- - [x] [strict-boolean-expressions](https://typescript-eslint.io/rules/strict-boolean-expressions)
128
127
  - [x] [await-thenable](https://typescript-eslint.io/rules/await-thenable)
129
128
  - [x] [no-array-delete](https://typescript-eslint.io/rules/no-array-delete)
130
129
  - [x] [no-base-to-string](https://typescript-eslint.io/rules/no-base-to-string)
131
130
  - [x] [no-confusing-void-expression](https://typescript-eslint.io/rules/no-confusing-void-expression)
131
+ - [x] [no-deprecated](https://typescript-eslint.io/rules/no-deprecated)
132
132
  - [x] [no-duplicate-type-constituents](https://typescript-eslint.io/rules/no-duplicate-type-constituents)
133
133
  - [x] [no-floating-promises](https://typescript-eslint.io/rules/no-floating-promises)
134
134
  - [x] [no-for-in-array](https://typescript-eslint.io/rules/no-for-in-array)
@@ -152,6 +152,7 @@ We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md) for:
152
152
  - [x] [no-unsafe-unary-minus](https://typescript-eslint.io/rules/no-unsafe-unary-minus)
153
153
  - [x] [non-nullable-type-assertion-style](https://typescript-eslint.io/rules/non-nullable-type-assertion-style)
154
154
  - [x] [only-throw-error](https://typescript-eslint.io/rules/only-throw-error)
155
+ - [x] [strict-boolean-expressions](https://typescript-eslint.io/rules/strict-boolean-expressions)
155
156
  - [x] [prefer-promise-reject-errors](https://typescript-eslint.io/rules/prefer-promise-reject-errors)
156
157
  - [x] [prefer-reduce-type-parameter](https://typescript-eslint.io/rules/prefer-reduce-type-parameter)
157
158
  - [x] [prefer-return-this-type](https://typescript-eslint.io/rules/prefer-return-this-type)
@@ -176,6 +177,8 @@ We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md) for:
176
177
 
177
178
  <!-- Badge definitions -->
178
179
 
180
+ [npm-badge]: https://img.shields.io/npm/v/oxlint-tsgolint.svg
181
+ [npm-url]: https://www.npmjs.com/package/oxlint-tsgolint
179
182
  [license-badge]: https://img.shields.io/badge/license-MIT-blue.svg
180
183
  [license-url]: LICENSE
181
184
  [ci-badge]: https://github.com/oxc-project/tsgolint/actions/workflows/ci.yml/badge.svg
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.5.0",
2
+ "version": "0.6.0",
3
3
  "license": "MIT",
4
4
  "author": "auvred <aauvred@gmail.com>",
5
5
  "repository": "github:oxc-project/tsgolint",
@@ -13,11 +13,11 @@
13
13
  "tsgolint": "./bin/tsgolint.js"
14
14
  },
15
15
  "optionalDependencies": {
16
- "@oxlint-tsgolint/win32-x64": "0.5.0",
17
- "@oxlint-tsgolint/win32-arm64": "0.5.0",
18
- "@oxlint-tsgolint/linux-x64": "0.5.0",
19
- "@oxlint-tsgolint/linux-arm64": "0.5.0",
20
- "@oxlint-tsgolint/darwin-x64": "0.5.0",
21
- "@oxlint-tsgolint/darwin-arm64": "0.5.0"
16
+ "@oxlint-tsgolint/win32-x64": "0.6.0",
17
+ "@oxlint-tsgolint/win32-arm64": "0.6.0",
18
+ "@oxlint-tsgolint/linux-x64": "0.6.0",
19
+ "@oxlint-tsgolint/linux-arm64": "0.6.0",
20
+ "@oxlint-tsgolint/darwin-x64": "0.6.0",
21
+ "@oxlint-tsgolint/darwin-arm64": "0.6.0"
22
22
  }
23
23
  }