.solhint.json 380 B

1234567891011121314
  1. {
  2. "extends": "solhint:recommended",
  3. "rules": {
  4. "indent": ["error", 4],
  5. "func-order": "off",
  6. "bracket-align": "off",
  7. "compiler-fixed": "off",
  8. "no-simple-event-func-name": "off",
  9. "separate-by-one-line-in-contract": "off",
  10. "two-lines-top-level-separator": "off",
  11. "mark-callable-contracts": "off",
  12. "compiler-version": ["error", "^0.5.0"]
  13. }
  14. }