chore: enable Solhint rule "named-parameters-mapping"

chore: disable Solhint rule "no-console"
chore: delete Solhint rule "reason-string"
This commit is contained in:
Paul Razvan Berg 2023-02-17 19:09:35 +02:00
parent 70be85961a
commit 084e321b7a
No known key found for this signature in database
GPG Key ID: BCC366159BD63828
1 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,8 @@
"func-name-mixedcase": "off", "func-name-mixedcase": "off",
"func-visibility": ["error", { "ignoreConstructors": true }], "func-visibility": ["error", { "ignoreConstructors": true }],
"max-line-length": ["error", 120], "max-line-length": ["error", 120],
"not-rely-on-time": "off", "named-parameters-mapping": "warn",
"reason-string": ["warn", { "maxLength": 64 }] "no-console": "off",
"not-rely-on-time": "off"
} }
} }