@nihalgonsalves/esconfig 0.14.0 → 0.15.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.
package/.oxlintrc.json CHANGED
@@ -2,7 +2,8 @@
2
2
  "$schema": "./node_modules/oxlint/configuration_schema.json",
3
3
  "categories": {
4
4
  "correctness": "error",
5
- "suspicious": "error"
5
+ "suspicious": "error",
6
+ "perf": "error"
6
7
  },
7
8
  "env": {
8
9
  "builtin": true
@@ -162,12 +163,7 @@
162
163
  "typescript/class-literal-property-style": "error",
163
164
  "typescript/consistent-generic-constructors": "error",
164
165
  "typescript/consistent-indexed-object-style": "error",
165
- "typescript/consistent-type-assertions": [
166
- "error",
167
- {
168
- "assertionStyle": "never"
169
- }
170
- ],
166
+ "typescript/consistent-type-assertions": "error",
171
167
  "typescript/consistent-type-definitions": ["error", "type"],
172
168
  "typescript/consistent-type-imports": [
173
169
  "error",
package/README.md CHANGED
@@ -55,7 +55,7 @@ Shared ECMAScript Config (TypeScript, oxlint, oxfmt, optional eslint)
55
55
  {
56
56
  "scripts": {
57
57
  "build": "tsc",
58
- "lint": "oxlint --type-aware && eslint ./src/",
58
+ "lint": "oxlint --type-aware --report-unused-disable-directives-severity=error && eslint ./src/",
59
59
  "format": "oxfmt",
60
60
  "format:check": "oxfmt --check"
61
61
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nihalgonsalves/esconfig",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "Shared ECMAScript Config (TypeScript, oxlint, oxfmt, eslint)",
5
5
  "license": "MIT",
6
6
  "author": "Nihal Gonsalves <nihal@nihalgonsalves.com>",
@@ -27,30 +27,30 @@
27
27
  "eslint-plugin-jsx-a11y": "^6.10.2",
28
28
  "eslint-plugin-react": "^7.37.5",
29
29
  "eslint-plugin-react-hooks": "^7.0.1",
30
- "eslint-plugin-storybook": "^10.2.8",
31
- "eslint-plugin-testing-library": "^7.15.4"
30
+ "eslint-plugin-storybook": "^10.2.10",
31
+ "eslint-plugin-testing-library": "^7.16.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@commitlint/cli": "^20.4.1",
35
- "@commitlint/config-conventional": "^20.4.1",
34
+ "@commitlint/cli": "^20.4.2",
35
+ "@commitlint/config-conventional": "^20.4.2",
36
36
  "@types/node": "^24.10.13",
37
- "eslint": "^9.39.2",
38
- "knip": "^5.83.1",
37
+ "eslint": "^10.0.1",
38
+ "knip": "^5.85.0",
39
39
  "lefthook": "^2.1.1",
40
- "oxfmt": "^0.33.0",
41
- "oxlint": "^1.48.0",
42
- "oxlint-tsgolint": "^0.14.0",
40
+ "oxfmt": "^0.35.0",
41
+ "oxlint": "^1.50.0",
42
+ "oxlint-tsgolint": "^0.14.2",
43
43
  "typescript": "^5.9.3"
44
44
  },
45
45
  "peerDependencies": {
46
- "eslint": "^9.39.2",
47
- "oxlint": "^1.48.0",
48
- "oxlint-tsgolint": "^0.14.0",
46
+ "eslint": "^10.0.1",
47
+ "oxlint": "^1.50.0",
48
+ "oxlint-tsgolint": "^0.14.2",
49
49
  "typescript": "^5.9.3"
50
50
  },
51
51
  "scripts": {
52
52
  "typecheck": "tsc --noEmit",
53
- "lint": "oxlint --type-aware . && knip",
53
+ "lint": "oxlint --type-aware --report-unused-disable-directives-severity=error && knip",
54
54
  "format": "oxfmt",
55
55
  "format:check": "oxfmt --check"
56
56
  }