From cf5f23de6ae8d9a1edcc07f3f1f6aee0922a9efb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Santana=20Gon=C3=A7alves?= Date: Fri, 14 Jun 2024 11:48:04 -0300 Subject: [PATCH] fix solhint --- .solhint.json | 3 +-- .solhintignore | 2 +- contracts/RIFToken.sol | 4 ++++ 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 contracts/RIFToken.sol diff --git a/.solhint.json b/.solhint.json index 56d9c5c..275c30f 100644 --- a/.solhint.json +++ b/.solhint.json @@ -2,7 +2,6 @@ "extends": "solhint:recommended", "rules": { "no-global-import": "off", - "func-visibility": ["warn", { "ignoreConstructors": true }], - "compiler-version": "off" + "func-visibility": ["warn", { "ignoreConstructors": true }] } } diff --git a/.solhintignore b/.solhintignore index 5750f41..5fef7cb 100644 --- a/.solhintignore +++ b/.solhintignore @@ -1,2 +1,2 @@ node_modules -contracts/RIFToken.test.sol +contracts/RIFToken.sol diff --git a/contracts/RIFToken.sol b/contracts/RIFToken.sol new file mode 100644 index 0000000..3f26069 --- /dev/null +++ b/contracts/RIFToken.sol @@ -0,0 +1,4 @@ +// SPDX-License-Identifier: UNLICENSED +pragma solidity ^0.4.24; + +import "rif-token-contracts/contracts/RIF/RIFToken.sol";