* fix: clean up solium linting errors * fix: make various contracts natspec compliant * fix: this.balance deprecated; convert to address(this).balance * fix: contract.call deprecated and switch to gasleft() * fix: ignore empty block rule project-wide * fix: add ignore cases for the rest of the linting warnings
14 lines
357 B
JSON
14 lines
357 B
JSON
{
|
|
"extends": "solium:all",
|
|
"plugins": ["security"],
|
|
"rules": {
|
|
"quotes": ["error", "double"],
|
|
"no-empty-blocks": "off",
|
|
"indentation": ["error", 2],
|
|
"arg-overflow": ["warning", 3],
|
|
"security/enforce-explicit-visibility": ["error"],
|
|
"security/no-block-members": ["warning"],
|
|
"security/no-inline-assembly": ["warning"]
|
|
}
|
|
}
|