Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

env:
FORCE_COLOR: true
PRIVATE_KEY: ${{secrets.PRIVATE_KEY}}
PRIVATE_KEY: 'bbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'

steps:
- uses: actions/checkout@v2
Expand Down
17 changes: 16 additions & 1 deletion .solhint.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
{
"extends": "solhint:default"
"extends": "solhint:recommended",
"rules": {
"func-visibility": [
"warn",
{
"ignoreConstructors": true
}
],
"var-name-mixedcase": "off",
"custom-errors": "off",
"no-global-import": "off",
"reason-string": "off",
"no-inline-assembly": "off",
"immutable-vars-naming": "off",
"one-contract-per-file": "off"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"scripts": {
"build": "hardhat compile",
"test": "hardhat test",
"lint": "solhint contracts/**.sol && prettier --check contracts/**/*.sol",
"lint": "solhint contracts/**/*.sol && prettier --check contracts/**/*.sol",
"docgen": "solidity-docgen --solc-module solc-0.8.25 --templates=docgen/templates"
}
}
Loading