@will-stone/eslint-config 4.0.3 → 4.0.4

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": "@will-stone/eslint-config",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "private": false,
5
5
  "description": "My ESLint config",
6
6
  "repository": {
@@ -187,7 +187,8 @@ module.exports = {
187
187
  // Disallow duplicate class members
188
188
  '@typescript-eslint/no-dupe-class-members': 'error',
189
189
 
190
- '@typescript-eslint/no-dynamic-delete': 'warn',
190
+ // Deleting missing key/value is safe
191
+ '@typescript-eslint/no-dynamic-delete': 'off',
191
192
 
192
193
  // ❌ const bar = foo!!!.bar
193
194
  // ✅ const bar = foo!.bar