Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
imp: added lint to justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Jul 21, 2024
1 parent 26f98b3 commit 7bee0c6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,12 @@ operator:
test-e2e testname:
echo "Running {{testname}} test..."
cd e2e/interchaintestv8 && go test -v -run=TestWithSP1ICS07TendermintTestSuite/{{testname}} -timeout 40m

# Lint the Rust, Solidity, and Go code using `cargo fmt`, `forge fmt`, and `golanci-lint` commands
lint:
@echo "Linting the Rust code..."
cargo fmt
@echo "Linting the Solidity code..."
forge fmt
@echo "Linting the Go code..."
cd e2e/interchaintestv8 && golangci-lint run --fix

0 comments on commit 7bee0c6

Please sign in to comment.