Files
privacy-pools-core/packages/contracts/.solhint.json
2024-12-16 16:36:48 -03:00

15 lines
409 B
JSON

{
"extends": "solhint:recommended",
"rules": {
"compiler-version": ["warn"],
"quotes": "off",
"func-visibility": ["warn", { "ignoreConstructors": true }],
"no-inline-assembly": "off",
"no-empty-blocks": "off",
"private-vars-leading-underscore": ["warn", { "strict": false }],
"ordering": "warn",
"avoid-low-level-calls": "off",
"named-parameters-mapping": "warn"
}
}