You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
508 B
19 lines
508 B
{
|
|
"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"]
|
|
}
|
|
}
|
|
|