.solhint.json 270 B

1234567891011
  1. {
  2. "extends": "solhint:recommended",
  3. "rules": {
  4. "func-order": "off",
  5. "mark-callable-contracts": "off",
  6. "no-empty-blocks": "off",
  7. "compiler-version": ["error", "^0.7.0"],
  8. "private-vars-leading-underscore": "error",
  9. "reason-string": "off"
  10. }
  11. }