.soliumrc.json 434 B

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