12345678910111213141516171819 |
- {
- "extends": "solium:all",
- "plugins": ["security"],
- "rules": {
- "error-reason": "off",
- "indentation": ["error", 2],
- "linebreak-style": ["error", "unix"],
- "max-len": ["error", 79],
- "no-constant": ["error"],
- "no-empty-blocks": "off",
- "quotes": ["error", "double"],
- "uppercase": "off",
- "visibility-first": "error",
- "security/enforce-explicit-visibility": ["error"],
- "security/no-block-members": ["warning"],
- "security/no-inline-assembly": ["warning"]
- }
- }
|