Skip to content

Commit 0e894a5

Browse files
fix: disable guard-for-in for extra noise (#52)
1 parent 7de7ddf commit 0e894a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

configs/javascript.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,9 @@ const suggestions = {
265265

266266
"grouped-accessor-pairs": "error",
267267

268-
"guard-for-in": "error",
268+
// No need
269+
// In most cases, the developer understands what he is doing and where, so no additional checks are required
270+
// "guard-for-in": "error",
269271

270272
// No need
271273
// "id-denylist": ["error", []]

0 commit comments

Comments
 (0)