Skip to content

Commit

Permalink
Update .solhint.json
Browse files Browse the repository at this point in the history
  • Loading branch information
neodaoist authored Sep 9, 2023
1 parent 71be974 commit 8e03eba
Showing 1 changed file with 26 additions and 8 deletions.
34 changes: 26 additions & 8 deletions .solhint.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
{
"extends": "solhint:recommended",
"rules": {
"compiler-version": ["error",">=0.8.0"],
"no-inline-assembly": ["off",">=0.8.0"],
"avoid-low-level-calls": ["off",">=0.8.0"],
"not-rely-on-time": ["off",">=0.8.0"],
"func-visibility": ["warn",{"ignoreConstructors":true}]
}
"extends": "solhint:recommended",
"rules": {
"compiler-version": [
"error",
">=0.8.0"
],
"no-inline-assembly": [
"off",
">=0.8.0"
],
"avoid-low-level-calls": [
"off",
">=0.8.0"
],
"not-rely-on-time": [
"off",
">=0.8.0"
],
"no-global-import": "off",
"func-visibility": [
"warn",
{
"ignoreConstructors": true
}
]
}
}

0 comments on commit 8e03eba

Please sign in to comment.