Skip to content

Commit

Permalink
テストでエラーが起きないように solhintの設定を見直しました。
Browse files Browse the repository at this point in the history
  • Loading branch information
mashharuki committed Jan 9, 2025
1 parent bef830a commit 2af5841
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions pkgs/contract/.solhintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules/
contracts/hats/module/
contracts/**/mock/**
2 changes: 1 addition & 1 deletion pkgs/contract/contracts/bigbang/mock/BigBang_Mock_v2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/O
/**
* Upgradableになっている確認するための検証用BigBangコントラクト
*/
contract BigBangMockV2 is OwnableUpgradeable {
contract BigBang_Mock_v2 is OwnableUpgradeable {
IHats public Hats;

IHatsModuleFactory public HatsModuleFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { MulticallUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/
import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import { IHats } from "../../hats/src/Interfaces/IHats.sol";

contract FractionTokenMockV2 is
contract FractionToken_Mock_v2 is
ERC1155Upgradeable,
ERC1155SupplyUpgradeable,
MulticallUpgradeable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SplitsCreator } from "../SplitsCreator.sol";
import { ISplitsCreator } from "../ISplitsCreator.sol";
import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";

contract SplitsCreatorFactoryMockV2 is OwnableUpgradeable {
contract SplitsCreatorFactory_Mock_v2 is OwnableUpgradeable {
event SplitCreatorCreated(
address indexed creator,
address indexed splitCreator,
Expand All @@ -18,7 +18,7 @@ contract SplitsCreatorFactoryMockV2 is OwnableUpgradeable {
);

address public SPLITS_CREATOR_IMPLEMENTATION;

address public BIG_BANG;

function initialize(
Expand Down

0 comments on commit 2af5841

Please sign in to comment.