Skip to content

Commit

Permalink
fix sol lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoncalves committed Jun 14, 2024
1 parent 009bf4a commit 1ff15a5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .solhint.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"extends": "solhint:recommended"
"extends": "solhint:recommended",
"rules": {
"no-global-import": "off",
"func-visibility": ["warn", { "ignoreConstructors": true }],
"compiler-version": "off"
}
}
1 change: 1 addition & 0 deletions contracts/VeRIFToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ contract VeRIFToken is

// The following functions are overrides required by Solidity.

//solhint-disable-next-line no-empty-blocks
function _authorizeUpgrade(address newImplementation) internal override onlyOwner {}

function decimals() public view override(ERC20Upgradeable, ERC20WrapperUpgradeable) returns (uint8) {
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -901,9 +901,9 @@
config-chain "^1.1.11"

"@scure/base@~1.1.0", "@scure/base@~1.1.6":
version "1.1.6"
resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.6.tgz#8ce5d304b436e4c84f896e0550c83e4d88cb917d"
integrity sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g==
version "1.1.7"
resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.7.tgz#fe973311a5c6267846aa131bc72e96c5d40d2b30"
integrity sha512-PPNYBslrLNNUQ/Yad37MHYsNQtK67EhWb6WtSvNLLPo7SdVZgkUjD6Dg+5On7zNwmskf8OX7I7Nx5oN+MIWE0g==

"@scure/bip32@1.1.5":
version "1.1.5"
Expand Down

0 comments on commit 1ff15a5

Please sign in to comment.