@bfra.me/eslint-config 0.8.0 → 0.9.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/lib/index.js CHANGED
@@ -526,6 +526,7 @@ async function typescript(options = {}) {
526
526
  "error",
527
527
  {
528
528
  allowExpressions: true,
529
+ allowFunctionsWithoutTypeParameters: true,
529
530
  allowHigherOrderFunctions: true,
530
531
  allowIIFEs: true
531
532
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bfra.me/eslint-config",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "Shared ESLint configuration for bfra.me",
5
5
  "keywords": [
6
6
  "bfra.me",
@@ -56,8 +56,6 @@
56
56
  "@eslint/config-inspector": "0.5.6",
57
57
  "@eslint/js": "9.16.0",
58
58
  "@types/eslint-config-prettier": "6.11.3",
59
- "@types/fs-extra": "11.0.4",
60
- "@types/node": "22.10.1",
61
59
  "@typescript-eslint/types": "8.17.0",
62
60
  "@vitest/eslint-plugin": "1.1.14",
63
61
  "eslint": "9.16.0",
@@ -65,15 +63,10 @@
65
63
  "eslint-plugin-no-only-tests": "3.3.0",
66
64
  "eslint-plugin-prettier": "5.2.1",
67
65
  "eslint-typegen": "0.3.2",
68
- "execa": "9.5.1",
69
- "fast-glob": "3.3.2",
70
- "fs-extra": "11.2.0",
71
66
  "jiti": "2.4.1",
72
- "prettier": "3.4.2",
73
67
  "tsup": "8.3.5",
74
68
  "tsx": "4.19.2",
75
- "vitest": "2.1.8",
76
- "@bfra.me/eslint-config": "0.8.0",
69
+ "@bfra.me/eslint-config": "0.9.0",
77
70
  "@bfra.me/tsconfig": "0.9.5",
78
71
  "@bfra.me/prettier-config": "0.13.4"
79
72
  },
@@ -117,6 +117,7 @@ export async function typescript(options: TypeScriptOptions = {}): Promise<Confi
117
117
  'error',
118
118
  {
119
119
  allowExpressions: true,
120
+ allowFunctionsWithoutTypeParameters: true,
120
121
  allowHigherOrderFunctions: true,
121
122
  allowIIFEs: true,
122
123
  },