Skip to content

Commit

Permalink
imp: fixed linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Nov 29, 2024
1 parent c75b38e commit 40c8f5a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ test-abigen:
# Run forge fmt and bun solhint
lint:
@echo "Linting the Solidity code..."
forge fmt --check && bun solhint -w 0 '{script,contracts,test}/**/*.sol'
forge fmt --check && bun solhint -w 0 '{scripts,contracts,test}/**/*.sol'
@echo "Linting the Go code..."
cd e2e/interchaintestv8 && golangci-lint run .
@echo "Linting the Rust code..."
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
],
"private": true,
"scripts": {
"lint:sol": "forge fmt --check && bun solhint -w 0 '{script,contracts,test}/**/*.sol' && bun natspec-smells --include 'contracts/**/*.sol'",
"lint:sol": "forge fmt --check && bun solhint -w 0 '{scripts,contracts,test}/**/*.sol'",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage"
}
Expand Down
1 change: 0 additions & 1 deletion scripts/E2ETestDeploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { stdJson } from "forge-std/StdJson.sol";
import { Script } from "forge-std/Script.sol";
import { SP1ICS07Tendermint } from "../contracts/light-clients/SP1ICS07Tendermint.sol";
import { IICS07TendermintMsgs } from "../contracts/light-clients/msgs/IICS07TendermintMsgs.sol";
import { ICS02Client } from "../contracts/ICS02Client.sol";
import { ICS26Router } from "../contracts/ICS26Router.sol";
import { ICS20Transfer } from "../contracts/ICS20Transfer.sol";
import { TestERC20 } from "../test/solidity-ibc/mocks/TestERC20.sol";
Expand Down

0 comments on commit 40c8f5a

Please sign in to comment.