Skip to content

Commit

Permalink
style: fix linter complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Nov 18, 2024
1 parent 0000000 commit 0000000
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .solhint.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"named-parameters-mapping": "warn",
"no-console": "off",
"not-rely-on-time": "off",
"one-contract-per-file": "off"
"one-contract-per-file": "off",
"gas-custom-errors": "off"
}
}
2 changes: 1 addition & 1 deletion scripts/E2ETestDeploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity ^0.8.28;
This script is used for end-to-end testing with SP1_PROVER=network.
*/

// solhint-disable gas-custom-errors,custom-errors
// solhint-disable custom-errors

import { stdJson } from "forge-std/StdJson.sol";
import { Script } from "forge-std/Script.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/IbcIdentifiersTest.t.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.28;

// solhint-disable gas-custom-errors,max-line-length
// solhint-disable max-line-length

import { Test } from "forge-std/Test.sol";
import { IBCIdentifiers } from "../src/utils/IBCIdentifiers.sol";
Expand Down

0 comments on commit 0000000

Please sign in to comment.