From a552526dfb038ef3396901926ff711774bbb6f4f Mon Sep 17 00:00:00 2001 From: Gas One Cent <86567384+gas1cent@users.noreply.github.com> Date: Wed, 2 Oct 2024 13:55:22 +0400 Subject: [PATCH] feat: enable the `named-parameters-mapping` rule --- .solhint.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.solhint.json b/.solhint.json index 076f7c77..23782374 100644 --- a/.solhint.json +++ b/.solhint.json @@ -8,6 +8,7 @@ "no-empty-blocks": "off", "private-vars-leading-underscore": ["warn", { "strict": false }], "ordering": "warn", - "avoid-low-level-calls": "off" + "avoid-low-level-calls": "off", + "named-parameters-mapping": "warn" } }