forked from AztecProtocol/aztec-connect-bridges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.solhint.json
22 lines (22 loc) · 831 Bytes
/
.solhint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "solhint:recommended",
"rules": {
"compiler-version": ["error", ">=0.8.4"],
"func-visibility": ["error", { "ignoreConstructors": true }],
"no-empty-blocks": "off",
"no-unused-vars": ["error"],
"state-visibility": ["error"],
"not-rely-on-time": "off",
"const-name-snakecase": ["error", { "treatImmutableVarAsConstant": true }],
"var-name-mixedcase": ["error", { "treatImmutableVarAsConstant": true }],
"error-name-mixedcase": ["error"],
"private-func-leading-underscore": ["error"],
"private-vars-no-leading-underscore": ["error"],
"func-param-name-leading-underscore": ["error"],
"func-param-name-mixedcase": ["error"],
"custom-error-over-require": ["error"],
"strict-override": ["error"],
"strict-import": ["error"],
"ordering": ["error"]
}
}