@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 +1 -1
- package/rules/typescript.js +2 -1
package/package.json
CHANGED
package/rules/typescript.js
CHANGED
|
@@ -187,7 +187,8 @@ module.exports = {
|
|
|
187
187
|
// Disallow duplicate class members
|
|
188
188
|
'@typescript-eslint/no-dupe-class-members': 'error',
|
|
189
189
|
|
|
190
|
-
|
|
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
|