Files
atomic-swap/.solhint.json
Dmitry Holodov ec325f2cf7 add linting and formatting support for solidity (#217)
* 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
2022-11-01 23:01:59 -05:00

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"
}
}