diff options
author | Federico Bond <federicobond@gmail.com> | 2017-05-19 10:05:49 +0800 |
---|---|---|
committer | Federico Bond <federicobond@gmail.com> | 2017-05-20 03:05:07 +0800 |
commit | 8e62df0436ea9a425e0896bf233f62cde592318d (patch) | |
tree | 3fbb04a3348275498e3670d85941b98e1d7e27a5 /.editorconfig | |
parent | aa441668db9ea5ec68b8988209c3ed7c82659876 (diff) | |
download | dexon-solidity-8e62df0436ea9a425e0896bf233f62cde592318d.tar.gz dexon-solidity-8e62df0436ea9a425e0896bf233f62cde592318d.tar.zst dexon-solidity-8e62df0436ea9a425e0896bf233f62cde592318d.zip |
Add .editorconfig file
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..86a837c1 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{cpp,h}] +indent_style = tab + +[*.{py,rst,sh,yml}] +indent_style = space +indent_size = 4 + +[std/**.sol] +indent_style = space +indent_size = 4 |