@petbee/eslint-config 1.0.9 → 1.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@petbee/eslint-config",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Petbee's eslint config",
5
5
  "keywords": [
6
6
  "eslint",
@@ -64,5 +64,5 @@
64
64
  "publishConfig": {
65
65
  "access": "public"
66
66
  },
67
- "gitHead": "4abb4d54bdc927736aee06803e0e9a5d179acfa1"
67
+ "gitHead": "bfee760daaaff555096ce38f7e7eb07bb65f5e4e"
68
68
  }
@@ -218,7 +218,7 @@ module.exports = hasTypescript
218
218
 
219
219
  // Disallow throwing literals as exceptions
220
220
  // https://typescript-eslint.io/rules/no-throw-literal/
221
- '@typescript-eslint/no-throw-literal': 'warn',
221
+ 'no-throw-literal': 'warn',
222
222
 
223
223
  // Disallows invocation of require() in favor of import statements
224
224
  // https://typescript-eslint.io/rules/no-require-imports/