Files
linea-monorepo/contracts/.solhint.json
2024-12-16 05:26:46 -08:00

19 lines
558 B
JSON

{
"extends": "solhint:recommended",
"rules": {
"compiler-version": ["error", "^0.8.0"],
"func-visibility": ["warn", { "ignoreConstructors": true }],
"no-inline-assembly": "off",
"var-name-mixedcase": "off",
"const-name-snakecase": "off",
"func-name-mixedcase": "off",
"state-visibility": "off",
"no-empty-blocks": "off",
"avoid-low-level-calls": "off",
"reason-string": "off",
"check-send-result": "off",
"no-unused-import": ["error"],
"gas-custom-errors": "off",
"no-complex-fallback": "off"
}
}