Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Jan 17, 2025
1 parent ff6770a commit bf7f7b2
Show file tree
Hide file tree
Showing 5 changed files with 1,166 additions and 1,029 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*.{sol,ts,yul}]
charset = utf-8
insert_final_newline = true
indent_size = 4
indent_style = tab
trim_trailing_whitespace = true

[{package.json,.travis.yml}]
charset = utf-8
insert_final_newline = true
indent_size = 4
indent_style = tab
trim_trailing_whitespace = true
22 changes: 22 additions & 0 deletions .solhint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"extends": "solhint:recommended",
"plugins": [],
"rules": {
"avoid-low-level-calls": "off",
"compiler-version": ["error", "^0.8.18"],
"custom-errors": "off",
"func-name-mixedcase": "off",
"func-order": "off",
"indent": ["error", 4],
"quotes": ["error", "double"],
"max-line-length": ["warn", 124],
"no-console": "warn",
"no-empty-blocks": "off",
"no-global-import": "warn",
"not-rely-on-time": "off",
"private-vars-leading-underscore": "warn",
"reason-string": ["warn", { "maxLength": 124 }],
"var-name-mixedcase": "off",
"reentrancy": "off"
}
}
2 changes: 2 additions & 0 deletions .solhintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
node_modules/*
Loading

0 comments on commit bf7f7b2

Please sign in to comment.