@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.
- package/dist/preset.mjs +10 -1
- 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":
|
|
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