@kayahr/oxlint-config 1.4.0 → 1.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/.oxlintrc.json +5 -1
  2. package/package.json +6 -6
package/.oxlintrc.json CHANGED
@@ -52,6 +52,7 @@
52
52
  "eslint/max-lines-per-function": "off",
53
53
  "eslint/max-params": "off",
54
54
  "eslint/no-await-in-loop": "off",
55
+ "eslint/no-bitwise": "off",
55
56
  "eslint/no-console": "off",
56
57
  "eslint/no-continue": "off",
57
58
  "eslint/no-empty-function": "off",
@@ -126,10 +127,13 @@
126
127
  "unicorn/no-await-expression-member": "off",
127
128
  "unicorn/no-instanceof-builtins": "off",
128
129
  "unicorn/no-null": "off",
130
+ "unicorn/number-literal-case": "off",
131
+ "unicorn/numeric-separators-style": "off",
129
132
  "unicorn/prefer-event-target": "off",
130
133
  "unicorn/prefer-node-protocol": "warn",
131
134
  "unicorn/prefer-number-properties": "off",
132
135
  "unicorn/prefer-string-raw": "off",
133
- "unicorn/switch-case-braces": "off"
136
+ "unicorn/switch-case-braces": "off",
137
+ "unicorn/text-encoding-identifier-case": "off"
134
138
  }
135
139
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kayahr/oxlint-config",
3
- "version": "1.4.0",
3
+ "version": "1.6.0",
4
4
  "description": "Shared oxlint config for @kayahr projects",
5
5
  "type": "module",
6
6
  "exports": "./.oxlintrc.json",
@@ -22,13 +22,13 @@
22
22
  ".oxlintrc.json"
23
23
  ],
24
24
  "devDependencies": {
25
- "@kayahr/cspell": "9.2.1-bundle.2",
26
- "@kayahr/npm-utils": "1.0.0",
27
- "@types/node": "24.7.2",
25
+ "@kayahr/cspell": "9.2.2-bundle.1",
26
+ "@kayahr/npm-utils": "1.1.0",
27
+ "@types/node": "24.9.1",
28
28
  "typescript": "5.9.3"
29
29
  },
30
30
  "dependencies": {
31
- "oxlint": "^1.23.0",
32
- "oxlint-tsgolint": "^0.2.0"
31
+ "oxlint": "^1.24.0",
32
+ "oxlint-tsgolint": "^0.3.0"
33
33
  }
34
34
  }