.soliumrc.json 529 B

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