Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
boyuanx committed Jan 1, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent d7ecdf5 commit bc2703e
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .solhint.json
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
"const-name-snakecase": "off",
"func-name-mixedcase": "off",
"func-visibility": ["error", { "ignoreConstructors": true }],
"max-line-length": ["error", 120],
"max-line-length": "off",
"named-parameters-mapping": "warn",
"no-inline-assembly": "off",
"not-rely-on-time": "off",
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/Counter.t.sol → test/example/Counter.t.sol
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
pragma solidity ^0.8.13;

import { Test } from "forge-std/Test.sol";
import { Counter } from "../src/Counter.sol";
import { Counter } from "../../src/example/Counter.sol";

contract CounterTest is Test {
Counter public counter;

0 comments on commit bc2703e

Please sign in to comment.