mirror of
https://github.com/status-im/community-dapp.git
synced 2025-02-23 03:28:21 +00:00
The ultimate goal will be to move the contracts package into its own repository that's based on our foundry template. This commit adds foundry template config files and removes legacy hardhat stuff.
22 lines
282 B
INI
22 lines
282 B
INI
# EditorConfig http://EditorConfig.org
|
|
|
|
# top-most EditorConfig file
|
|
root = true
|
|
|
|
# All files
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
indent_size = 2
|
|
indent_style = space
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.sol]
|
|
indent_size = 4
|
|
|
|
[*.tree]
|
|
indent_size = 1
|
|
|
|
|