.soliumrc.json 555 B

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