mirror of
https://github.com/AthanorLabs/atomic-swap.git
synced 2026-01-08 21:58:07 -05:00
* Added new `format-solidity` and `lint-solidity` Makefile targets * Updated documentation on how to install the new tools dependencies * Formatted the solidity code, updated expected byte code and deployed stagenet contract * Updated go.mod to go 1.19 * Updated Github actions for go 1.19 and we now use all formatters/linters in the actions checks
10 lines
229 B
JSON
10 lines
229 B
JSON
{
|
|
"extends": "solhint:recommended",
|
|
"rules": {
|
|
"func-visibility": ["warn",{"ignoreConstructors":true}],
|
|
"reason-string": ["warn",{"maxLength":64}],
|
|
"no-inline-assembly": "off",
|
|
"not-rely-on-time": "off"
|
|
}
|
|
}
|