@shelf/eslint-config 3.11.0 → 3.11.2

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.
@@ -4,9 +4,9 @@ module.exports = {
4
4
  // It's a bit annoying
5
5
  rules: {
6
6
  // There is no need to specify return types for test case function body it('...', fn)
7
- '@typescript-eslint/explicit-function-return-type': 0,
7
+ '@typescript-eslint/explicit-function-return-type': "off",
8
8
  // There is no mandatory to specify types in tests
9
- '@typescript-eslint/no-explicit-any': 0,
9
+ '@typescript-eslint/no-explicit-any': "off",
10
10
  },
11
11
  },
12
12
  allowRequireInConfigs: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shelf/eslint-config",
3
- "version": "3.11.0",
3
+ "version": "3.11.2",
4
4
  "description": "ESLint Config for Shelf Projects",
5
5
  "license": "MIT",
6
6
  "repository": "shelfio/eslint-config",
package/typescript.js CHANGED
@@ -67,6 +67,7 @@ module.exports = {
67
67
  selector: "ObjectExpression > Property[key.name='accountId'] ~ SpreadElement",
68
68
  message: "Danger, this can overwrite 'accountId'. Rearrange the order.",
69
69
  },
70
+ ],
70
71
  },
71
72
  overrides: [allowRequireInConfigs, noExplicitsInTests, noCastWithJestMock],
72
73
  };