Skip to content

Commit

Permalink
style: resolve linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gas1cent committed Feb 5, 2024
1 parent 3b27477 commit 7b39e51
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .solhint.tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"private-vars-leading-underscore": ["warn", { "strict": false }],
"ordering": "warn",
"immutable-name-snakecase": "warn",
"avoid-low-level-calls": "off"
"avoid-low-level-calls": "off",
"one-contract-per-file": "off"
}
}
2 changes: 1 addition & 1 deletion test/integration/IntegrationBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity =0.8.23;

import {Greeter, IGreeter} from 'contracts/Greeter.sol';
import {Test, console2} from 'forge-std/Test.sol';
import {Test} from 'forge-std/Test.sol';
import {IERC20} from 'isolmate/interfaces/tokens/IERC20.sol';

contract IntegrationBase is Test {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/Greeter.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity =0.8.23;

import {Greeter, IGreeter} from 'contracts/Greeter.sol';
import {Test, console2} from 'forge-std/Test.sol';
import {Test} from 'forge-std/Test.sol';
import {IERC20} from 'isolmate/interfaces/tokens/IERC20.sol';

abstract contract Base is Test {
Expand Down

0 comments on commit 7b39e51

Please sign in to comment.