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.
22 lines
583 B
22 lines
583 B
{
|
|
"extends": "solium:all",
|
|
"plugins": ["security"],
|
|
"rules": {
|
|
"arg-overflow": "off",
|
|
"blank-lines": "off",
|
|
"error-reason": "off",
|
|
"indentation": ["error", 4],
|
|
"lbrace": "off",
|
|
"linebreak-style": ["error", "unix"],
|
|
"max-len": ["error", 120],
|
|
"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"]
|
|
}
|
|
}
|
|
|