|
| 1 | +{ |
| 2 | + "extends": "solhint:recommended", |
| 3 | + "rules": { |
| 4 | + "compiler-version": ["off"], |
| 5 | + "constructor-syntax": "warn", |
| 6 | + "quotes": ["error", "single"], |
| 7 | + "func-visibility": ["warn", { "ignoreConstructors": true }], |
| 8 | + "not-rely-on-time": "off", |
| 9 | + "func-name-mixedcase": "off", |
| 10 | + "var-name-mixedcase": "off", |
| 11 | + "const-name-snakecase": "off", |
| 12 | + "no-inline-assembly": "off", |
| 13 | + "no-empty-blocks": "off", |
| 14 | + "definition-name-capwords": "off", |
| 15 | + "named-parameters-function": "off", |
| 16 | + "no-global-import": "off", |
| 17 | + "max-states-count": "off", |
| 18 | + "private-vars-leading-underscore": ["warn", { "strict": false }], |
| 19 | + "ordering": "warn", |
| 20 | + "immutable-name-snakecase": "warn", |
| 21 | + "avoid-low-level-calls": "off" |
| 22 | + } |
| 23 | +} |
0 commit comments