Skip to content

Commit

Permalink
Updated .solhint.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Vineetkg20 authored Oct 18, 2024
1 parent 2d06562 commit b06f0bf
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .solhint.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
"extends": "solhint:recommended",
"rules": {
"compiler-version": ["error", "^0.8.0"],
"func-visibility": ["warn", { "ignoreConstructors": true }]
"func-visibility": ["error", { "ignoreConstructors": false }],
"max-line-length": ["warn", 120],
"no-unused-vars": "warn",
"avoid-using-with": "error",
"no-empty-blocks": "error",
"constructor-super": "error",
"not-rely-on-time": "warn",
"multiple-imports": "error",
"no-inline-assembly": "error",
"variable-name": ["error", { "ignoreDestructuring": true }],
"revert": "error"
}
}

0 comments on commit b06f0bf

Please sign in to comment.