mirror of
https://github.com/CryptKeeperZK/semaphore.git
synced 2026-01-09 23:48:09 -05:00
22 lines
625 B
JSON
22 lines
625 B
JSON
{
|
|
"extends": "solhint:recommended",
|
|
"plugins": ["prettier"],
|
|
"rules": {
|
|
"code-complexity": ["error", 7],
|
|
"compiler-version": ["error", ">=0.8.0"],
|
|
"const-name-snakecase": "off",
|
|
"no-empty-blocks": "off",
|
|
"constructor-syntax": "error",
|
|
"func-visibility": ["error", { "ignoreConstructors": true }],
|
|
"max-line-length": ["error", 120],
|
|
"not-rely-on-time": "off",
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
"endOfLine": "auto"
|
|
}
|
|
],
|
|
"reason-string": ["warn", { "maxLength": 80 }]
|
|
}
|
|
}
|