From bce83910ff71b323950361413b6d8893cf26b228 Mon Sep 17 00:00:00 2001 From: Andrew Kazakov Date: Thu, 17 Jul 2025 13:30:04 +0300 Subject: [PATCH] fix: disallow extra properties in rule options --- lib/rules/unsafe-to-chain-command.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/rules/unsafe-to-chain-command.js b/lib/rules/unsafe-to-chain-command.js index bdaeadb..49c50a6 100644 --- a/lib/rules/unsafe-to-chain-command.js +++ b/lib/rules/unsafe-to-chain-command.js @@ -49,6 +49,7 @@ const schema = { default: [], }, }, + additionalProperties: false, } /**