From c47d248a409f49e37b7b0522190bb71776a64c60 Mon Sep 17 00:00:00 2001 From: 0xtekgrinder <0xtekgrinder@protonmail.com> Date: Thu, 11 Apr 2024 20:34:36 -0400 Subject: [PATCH] chore: update solhint config --- .solhint.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.solhint.json b/.solhint.json index 99c3260..795e1b4 100644 --- a/.solhint.json +++ b/.solhint.json @@ -2,7 +2,6 @@ "extends": "solhint:recommended", "plugins": ["prettier"], "rules": { - "max-line-length": ["error", 120], "avoid-call-value": "warn", "avoid-low-level-calls": "off", "avoid-tx-origin": "warn", @@ -17,12 +16,13 @@ "no-global-import": "off", "not-rely-on-time": "off", "compiler-version": "off", + "explicit-types": ["error","explicit"], "private-vars-leading-underscore": "warn", "reentrancy": "warn", "no-inline-assembly": "off", "no-complex-fallback": "off", "reason-string": "off", "func-visibility": ["warn", { "ignoreConstructors": true }], - "explicit-types": ["error","explicit"] + "custom-errors": "off" } }