Skip to content

Commit 1c45cfc

Browse files
committed
chore: release
1 parent 8d81c8c commit 1c45cfc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

oxlint-configs/typescript.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@
178178
"typescript/no-duplicate-type-constituents": [
179179
2,
180180
{
181-
"ignoreParameters": true,
182-
"ignoreProperties": true
181+
"ignoreIntersections": false,
182+
"ignoreUnions": false
183183
}
184184
],
185185
"typescript/no-for-in-array": 2,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-neon",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"description": "The ultimate ESLint shareable config",
55
"keywords": [
66
"config",

src/typescript.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ const rules: TSESLint.FlatConfig.Rules = {
7070
],
7171
"@typescript-eslint/no-duplicate-enum-values": 2,
7272
"@typescript-eslint/no-duplicate-type-constituents": [2, {
73-
ignoreParameters: true,
74-
ignoreProperties: true,
73+
ignoreIntersections: false,
74+
ignoreUnions: false,
7575
}],
7676
"@typescript-eslint/no-dynamic-delete": 2,
7777
"@typescript-eslint/no-empty-function": 0,

0 commit comments

Comments
 (0)