@storm-software/eslint 0.21.0 → 0.22.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/dist/preset.mjs +10 -1
  2. package/package.json +1 -1
package/dist/preset.mjs CHANGED
@@ -1315,7 +1315,16 @@ function stormPreset(options = {
1315
1315
  }
1316
1316
  },
1317
1317
  rules: {
1318
- "@typescript-eslint/explicit-module-boundary-types": ["error"]
1318
+ "@typescript-eslint/explicit-module-boundary-types": "off",
1319
+ "@typescript-eslint/explicit-function-return-type": [
1320
+ "warn",
1321
+ {
1322
+ allowExpressions: true,
1323
+ allowConciseArrowFunctionExpressionsStartingWithVoid: true,
1324
+ allowFunctionsWithoutTypeParameters: true,
1325
+ allowIIFEs: true
1326
+ }
1327
+ ]
1319
1328
  }
1320
1329
  },
1321
1330
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.21.0",
3
+ "version": "0.22.0",
4
4
  "type": "module",
5
5
  "description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
6
6
  "repository": {