.soliumrc.json 508 B

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