* Updated code style to 4 spaces and 120 max characters per line. * Update contracts/token/ERC721/ERC721Pausable.sol Co-Authored-By: nventuro <nicolas.venturo@gmail.com> * Update contracts/token/ERC721/IERC721.sol Co-Authored-By: nventuro <nicolas.venturo@gmail.com>
23 lines
583 B
JSON
23 lines
583 B
JSON
{
|
|
"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"]
|
|
}
|
|
}
|