* Upgrade to latest solhint rc * Add private-vars-leading-underscore linter rule * Add leading underscore to GSNRecipient constants * Remove leading underscore from ERC165Checker functions * Add leading underscore to multiple private constants * Fix linter errors in mocks * Add leading underscore to ERC777's ERC1820 registry * Add changelog entry
11 lines
242 B
JSON
11 lines
242 B
JSON
{
|
|
"extends": "solhint:recommended",
|
|
"rules": {
|
|
"func-order": "off",
|
|
"mark-callable-contracts": "off",
|
|
"no-empty-blocks": "off",
|
|
"compiler-version": ["error", "^0.6.0"],
|
|
"private-vars-leading-underscore": "error"
|
|
}
|
|
}
|