@nihalgonsalves/esconfig 0.10.12 → 0.10.14

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.
@@ -13,6 +13,7 @@ export default tseslint.config(
13
13
  ...sharedConfig,
14
14
  // @ts-expect-error wrong types
15
15
  react.configs.flat.recommended,
16
+ // @ts-expect-error wrong types
16
17
  react.configs.flat["jsx-runtime"],
17
18
  {
18
19
  plugins: {
@@ -208,6 +208,12 @@ export default tseslint.config(
208
208
  },
209
209
  },
210
210
  },
211
+ {
212
+ files: ["**/*.config.*"],
213
+ rules: {
214
+ "import/no-default-export": "off",
215
+ },
216
+ },
211
217
  // eslint-disable-next-line @typescript-eslint/no-unsafe-argument
212
218
  prettierConfig,
213
219
  );
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@nihalgonsalves/esconfig",
3
- "version": "0.10.12",
3
+ "version": "0.10.14",
4
4
  "description": "Shared ECMAScript Config (TS, Lint, Prettier)",
5
5
  "main": "index.js",
6
6
  "repository": "git@github.com:nihalgonsalves/esconfig.git",
7
7
  "author": "Nihal Gonsalves <nihal@nihalgonsalves.com>",
8
8
  "license": "MIT",
9
9
  "type": "module",
10
- "packageManager": "yarn@4.5.0+sha512.837566d24eec14ec0f5f1411adb544e892b3454255e61fdef8fd05f3429480102806bac7446bc9daff3896b01ae4b62d00096c7e989f1596f2af10b927532f39",
10
+ "packageManager": "yarn@4.5.1+sha512.341db9396b6e289fecc30cd7ab3af65060e05ebff4b3b47547b278b9e67b08f485ecd8c79006b405446262142c7a38154445ef7f17c1d5d1de7d90bf9ce7054d",
11
11
  "files": [
12
12
  "eslint.config.shared.js",
13
13
  "eslint.config.shared.d.ts",
@@ -22,27 +22,27 @@
22
22
  "format:check": "prettier . --check"
23
23
  },
24
24
  "dependencies": {
25
- "@eslint/js": "^9.12.0",
25
+ "@eslint/js": "^9.13.0",
26
26
  "eslint-config-prettier": "^9.1.0",
27
27
  "eslint-plugin-import": "^2.31.0",
28
- "eslint-plugin-jsx-a11y": "^6.10.0",
29
- "eslint-plugin-react": "^7.37.1",
28
+ "eslint-plugin-jsx-a11y": "^6.10.2",
29
+ "eslint-plugin-react": "^7.37.2",
30
30
  "eslint-plugin-react-hooks": "^5.0.0",
31
- "typescript-eslint": "^8.8.1"
31
+ "typescript-eslint": "^8.12.2"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@commitlint/cli": "^19.5.0",
35
35
  "@commitlint/config-conventional": "^19.5.0",
36
36
  "@types/eslint__js": "^8.42.3",
37
- "@types/node": "^22.7.5",
38
- "eslint": "^9.12.0",
39
- "knip": "^5.33.3",
40
- "lefthook": "^1.7.18",
37
+ "@types/node": "^22.8.4",
38
+ "eslint": "^9.13.0",
39
+ "knip": "^5.34.4",
40
+ "lefthook": "^1.8.2",
41
41
  "prettier": "^3.3.3",
42
42
  "typescript": "^5.6.3"
43
43
  },
44
44
  "peerDependencies": {
45
- "eslint": "^9.12.0",
45
+ "eslint": "^9.13.0",
46
46
  "typescript": "^5.5.4",
47
47
  "typescript-eslint": "^8.4.0"
48
48
  }