From 0000000827213650833775483c3246581a2ae23b Mon Sep 17 00:00:00 2001 From: srdtrk Date: Wed, 13 Nov 2024 17:05:41 +0800 Subject: [PATCH] imp: remove broken linter --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 75659f5..b7208f2 100644 --- a/justfile +++ b/justfile @@ -102,7 +102,7 @@ lint: cargo fmt --all -- --check cargo clippy @echo "Linting the Solidity code..." - forge fmt --check && bun solhint -w 0 -c .solhint.json 'contracts/**/*.sol' && bun natspec-smells --enforceInheritdoc false --include 'contracts/src/**/*.sol' + forge fmt --check && bun solhint -w 0 -c .solhint.json 'contracts/**/*.sol' @echo "Linting the Go code..." cd e2e/interchaintestv8 && golangci-lint run