From b408a95aca2a8cf4d1e05900a81a14d50a6f6cd2 Mon Sep 17 00:00:00 2001 From: drgorillamd <83670532+drgorillamd@users.noreply.github.com> Date: Tue, 28 May 2024 11:35:06 +0200 Subject: [PATCH] fix: solhint wrong rule naming --- .solhint.tests.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.solhint.tests.json b/.solhint.tests.json index ecbf37ec..fb26b4ea 100644 --- a/.solhint.tests.json +++ b/.solhint.tests.json @@ -6,7 +6,7 @@ "quotes": ["error", "single"], "func-visibility": ["warn", { "ignoreConstructors": true }], "not-rely-on-time": "off", - "func-name-mixedcase": "off", + "style-guide-casing": "off", "var-name-mixedcase": "off", "const-name-snakecase": "off", "no-inline-assembly": "off", @@ -16,7 +16,7 @@ "no-global-import": "off", "max-states-count": "off", "private-vars-leading-underscore": ["warn", { "strict": false }], - "ordering": "warn", + "ordering": "off", "immutable-name-snakecase": "warn", "avoid-low-level-calls": "off", "one-contract-per-file": "off",