@kayahr/oxlint-config 1.10.0 → 1.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.
Files changed (2) hide show
  1. package/.oxlintrc.json +10 -6
  2. package/package.json +4 -4
package/.oxlintrc.json CHANGED
@@ -16,7 +16,8 @@
16
16
  "overrides": [
17
17
  {
18
18
  "files": [
19
- "**/*.test.ts"
19
+ "**/*.test.ts",
20
+ "**/*.test.tsx"
20
21
  ],
21
22
  "rules": {
22
23
  "no-floating-promises": "off"
@@ -61,6 +62,7 @@
61
62
  "eslint/no-eq-null": "off",
62
63
  "eslint/no-magic-numbers": "off",
63
64
  "eslint/no-multi-assign": "off",
65
+ "eslint/no-nested-ternary": "off",
64
66
  "eslint/no-param-reassign": "off",
65
67
  "eslint/no-plusplus": "off",
66
68
  "eslint/no-return-assign": "off",
@@ -91,13 +93,16 @@
91
93
  "jsdoc/require-param": "off",
92
94
  "jsdoc/require-param-type": "off",
93
95
  "jsdoc/require-returns-type": "off",
96
+ "jsx-a11y/anchor-is-valid": "off",
94
97
  "node/no-process-env": "off",
95
98
  "oxc/no-async-await": "off",
99
+ "oxc/no-map-spread": "off",
96
100
  "oxc/no-optional-chaining": "off",
97
101
  "oxc/no-reset-spread-properties": "off",
98
102
  "oxc/no-rest-spread-properties": "off",
99
103
  "promise/avoid-new": "off",
100
104
  "promise/no-multiple-resolved": "off",
105
+ "promise/param-names": "off",
101
106
  "promise/prefer-await-to-callbacks": "off",
102
107
  "promise/prefer-await-to-then": "off",
103
108
  "typescript/array-type": [
@@ -127,16 +132,15 @@
127
132
  "unicorn/no-array-reverse": "off",
128
133
  "unicorn/no-array-sort": "off",
129
134
  "unicorn/no-await-expression-member": "off",
135
+ "typescript/consistent-type-definitions": "off",
136
+ "typescript/no-dynamic-delete": "off",
130
137
  "typescript/no-empty-interface": [
131
138
  "warn", {
132
139
  "allow_single_extends": true
133
140
  }
134
141
  ],
135
- "typescript/no-empty-object-type": [
136
- "warn", {
137
- "allowInterfaces": "with-single-extends"
138
- }
139
- ],
142
+ "typescript/no-empty-object-type": "off",
143
+ "typescript/no-namespace": "off",
140
144
  "unicorn/no-instanceof-builtins": "off",
141
145
  "unicorn/no-null": "off",
142
146
  "unicorn/no-process-exit": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kayahr/oxlint-config",
3
- "version": "1.10.0",
3
+ "version": "1.12.0",
4
4
  "description": "Shared oxlint config for @kayahr projects",
5
5
  "type": "module",
6
6
  "exports": "./.oxlintrc.json",
@@ -23,12 +23,12 @@
23
23
  ],
24
24
  "devDependencies": {
25
25
  "@kayahr/cspell": "9.2.2-bundle.1",
26
- "@kayahr/npm-utils": "1.1.0",
27
- "@types/node": "24.9.2",
26
+ "@kayahr/npm-utils": "1.1.1",
27
+ "@types/node": "24.10.0",
28
28
  "typescript": "5.9.3"
29
29
  },
30
30
  "dependencies": {
31
31
  "oxlint": "^1.25.0",
32
- "oxlint-tsgolint": "^0.4.0"
32
+ "oxlint-tsgolint": "^0.5.0"
33
33
  }
34
34
  }