mirror of
https://github.com/vacp2p/foundry-template.git
synced 2025-01-24 22:39:05 +00:00
b67c427d3b
build: upgrade to latest forge-std chore: disable "func-name-mixedcase" rule test: rename test names to conform with Foundry best practices
13 lines
361 B
JSON
13 lines
361 B
JSON
{
|
|
"extends": "solhint:recommended",
|
|
"rules": {
|
|
"code-complexity": ["error", 8],
|
|
"compiler-version": ["error", ">=0.8.4"],
|
|
"func-name-mixedcase": "off",
|
|
"func-visibility": ["error", { "ignoreConstructors": true }],
|
|
"max-line-length": ["error", 120],
|
|
"not-rely-on-time": "off",
|
|
"reason-string": ["warn", { "maxLength": 64 }]
|
|
}
|
|
}
|