.soliumrc.json 468 B

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