.soliumrc.json 583 B

12345678910111213141516171819202122
  1. {
  2. "extends": "solium:all",
  3. "plugins": ["security"],
  4. "rules": {
  5. "arg-overflow": "off",
  6. "blank-lines": "off",
  7. "error-reason": "off",
  8. "indentation": ["error", 4],
  9. "lbrace": "off",
  10. "linebreak-style": ["error", "unix"],
  11. "max-len": ["error", 120],
  12. "no-constant": ["error"],
  13. "no-empty-blocks": "off",
  14. "quotes": ["error", "double"],
  15. "uppercase": "off",
  16. "visibility-first": "error",
  17. "security/enforce-explicit-visibility": ["error"],
  18. "security/no-block-members": ["warning"],
  19. "security/no-inline-assembly": ["warning"]
  20. }
  21. }