Skip to content

Instantly share code, notes, and snippets.

@maurelian
Created April 11, 2018 20:33
Show Gist options
  • Select an option

  • Save maurelian/f46edd3c953ed712fba27a34b484f86e to your computer and use it in GitHub Desktop.

Select an option

Save maurelian/f46edd3c953ed712fba27a34b484f86e to your computer and use it in GitHub Desktop.
{
"extends": "default",
"rules": {
"reentrancy": false,
"avoid-sha3": false,
"avoid-suicide": false,
"avoid-throw": false,
"func-visibility": false,
"state-visibility": false,
"check-send-result": false,
"avoid-call-value": false,
"compiler-fixed ": false,
"compiler-gt-0_4": false,
"no-complex-fallback": false,
"mark-callable-contracts": false,
"multiple-sends": false,
"no-simple-event-func-name": false,
"avoid-tx-origin": false,
"no-inline-assembly": false,
"not-rely-on-block-hash": false,
"avoid-low-level-calls": false,
"func-name-mixedcase": false,
"func-param-name-mixedcase": false,
"var-name-mixedcase": false,
"event-name-camelcase": false,
"const-name-snakecase": false,
"modifier-name-mixedcase": false,
"contract-name-camelcase": false,
"use-forbidden-name": false,
"visibility-modifier-order": false,
"imports-on-top": false,
"two-lines-top-level-separator": false,
"func-order": false,
"quotes": false,
"no-mix-tabs-and-spaces": false,
"indent": false,
"bracket-align": false,
"array-declaration-spaces": false,
"separate-by-one-line-in-contract": false,
"expression-indent": false,
"statement-indent ": false,
"space-after-comma": false,
"no-spaces-before-semicolon": false,
"max-line-length": false,
"payable-fallback": false,
"no-empty-blocks": false,
"no-unused-vars": false,
"function-max-lines": false,
"code-complexity": false,
"max-states-count": false
}
}
@maurelian
Copy link
Author

Rename this to .solhint.json.

It configures solhint to look for possible security related risks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment