diff --git a/.solhint.json b/.solhint.json index aa2ba53..e52e6f7 100644 --- a/.solhint.json +++ b/.solhint.json @@ -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", diff --git a/src/Counter.sol b/src/example/Counter.sol similarity index 100% rename from src/Counter.sol rename to src/example/Counter.sol diff --git a/src/CounterUpgradeable.sol b/src/example/CounterUpgradeable.sol similarity index 100% rename from src/CounterUpgradeable.sol rename to src/example/CounterUpgradeable.sol diff --git a/test/Counter.t.sol b/test/example/Counter.t.sol similarity index 89% rename from test/Counter.t.sol rename to test/example/Counter.t.sol index 1b446c3..648f158 100644 --- a/test/Counter.t.sol +++ b/test/example/Counter.t.sol @@ -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;