|
1 | 1 | { |
2 | 2 | "extends": "solhint:recommended", |
3 | 3 | "rules": { |
4 | | - "code-complexity": ["error", 8], |
5 | | - "compiler-version": ["error", ">=0.8.13"], |
6 | | - "contract-name-camelcase": "off", |
7 | | - "func-name-mixedcase": "off", |
| 4 | + "avoid-low-level-calls": "off", |
| 5 | + "code-complexity": ["error", 9], |
| 6 | + "compiler-version": ["error", ">=0.8.22"], |
8 | 7 | "func-visibility": ["error", { "ignoreConstructors": true }], |
9 | | - "max-line-length": ["error", 124], |
10 | | - "named-parameters-mapping": "warn", |
11 | | - "no-console": "off", |
12 | | - "not-rely-on-time": "off" |
| 8 | + "func-name-mixedcase": "off", |
| 9 | + "function-max-lines": "off", |
| 10 | + "gas-custom-errors": "off", |
| 11 | + "gas-increment-by-one": "off", |
| 12 | + "gas-indexed-events": "off", |
| 13 | + "gas-small-strings": "off", |
| 14 | + "gas-strict-inequalities": "off", |
| 15 | + "gas-struct-packing": "off", |
| 16 | + "max-line-length": ["error", 128], |
| 17 | + "max-states-count": ["warn", 20], |
| 18 | + "one-contract-per-file": "off", |
| 19 | + "no-empty-blocks": "off", |
| 20 | + "not-rely-on-time": "off", |
| 21 | + "use-natspec": "off", |
| 22 | + "var-name-mixedcase": "warn" |
13 | 23 | } |
14 | 24 | } |
0 commit comments