aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFederico Bond <federicobond@gmail.com>2017-05-19 10:05:49 +0800
committerFederico Bond <federicobond@gmail.com>2017-05-20 03:05:07 +0800
commit8e62df0436ea9a425e0896bf233f62cde592318d (patch)
tree3fbb04a3348275498e3670d85941b98e1d7e27a5
parentaa441668db9ea5ec68b8988209c3ed7c82659876 (diff)
downloaddexon-solidity-8e62df0436ea9a425e0896bf233f62cde592318d.tar
dexon-solidity-8e62df0436ea9a425e0896bf233f62cde592318d.tar.gz
dexon-solidity-8e62df0436ea9a425e0896bf233f62cde592318d.tar.bz2
dexon-solidity-8e62df0436ea9a425e0896bf233f62cde592318d.tar.lz
dexon-solidity-8e62df0436ea9a425e0896bf233f62cde592318d.tar.xz
dexon-solidity-8e62df0436ea9a425e0896bf233f62cde592318d.tar.zst
dexon-solidity-8e62df0436ea9a425e0896bf233f62cde592318d.zip
Add .editorconfig file
-rw-r--r--.editorconfig18
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