eslint-config-heck 3.3.0 → 3.3.1

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/biomeLinting.json CHANGED
@@ -305,7 +305,7 @@
305
305
  }
306
306
  },
307
307
  "useDeprecatedReason": "off",
308
- "useExplicitType": "error",
308
+ "useExplicitType": "off",
309
309
  "useGoogleFontDisplay": "error",
310
310
  "useGuardForIn": "error",
311
311
  "useImportRestrictions": "error",
package/nodeWithBiome.cjs CHANGED
@@ -736,7 +736,16 @@ const overrides = [
736
736
  "@typescript-eslint/default-param-last": "off",
737
737
  "dot-notation": "off",
738
738
  "@typescript-eslint/dot-notation": "off",
739
- "@typescript-eslint/explicit-function-return-type": "off",
739
+ "@typescript-eslint/explicit-function-return-type": [
740
+ "error",
741
+ {
742
+ allowExpressions: true,
743
+ allowTypedFunctionExpressions: true,
744
+ allowHigherOrderFunctions: true,
745
+ allowDirectConstAssertionInArrowFunctions: true,
746
+ allowConciseArrowFunctionExpressionsStartingWithVoid: false,
747
+ },
748
+ ],
740
749
  "@typescript-eslint/explicit-member-accessibility": "off",
741
750
  "@typescript-eslint/explicit-module-boundary-types": "off",
742
751
  "init-declarations": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",