Skip to content
This repository was archived by the owner on Jan 18, 2023. It is now read-only.

Commit c61754a

Browse files
authored
Merge pull request #4 from SetProtocol/justin_chen-add-solhint
Add solhint for linting
2 parents 2ef2789 + 9a51dfa commit c61754a

File tree

7 files changed

+446
-5
lines changed

7 files changed

+446
-5
lines changed

.solhint.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": "default",
3+
"rules": {
4+
"indent": ["error", 2],
5+
"quotes": ["error", "double"],
6+
"max-line-length": ["error", 120]
7+
}
8+
}

contracts/Migrations.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity 0.4.18;
1+
pragma solidity ^0.4.19;
22

33

44
contract Migrations {

contracts/SetToken.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity 0.4.18;
1+
pragma solidity ^0.4.19;
22

33

44
import "zeppelin-solidity/contracts/token/ERC20/StandardToken.sol";

contracts/lib/Set.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity 0.4.18;
1+
pragma solidity ^0.4.19;
22

33

44
/**

0 commit comments

Comments
 (0)