diff options
author | Remco Bloemen <Recmo@users.noreply.github.com> | 2018-02-06 03:31:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-06 03:31:06 +0800 |
commit | 4ddb86df53802fe5c965724d965d281528a97971 (patch) | |
tree | cd86e206dfcb944bbbc83d52d796ceca22f89070 | |
parent | 2c7db23022d429758dd01d8d63afdf50d19013ba (diff) | |
parent | fe51c9a9a24ef594dfbc8f47a36fc84f6a243f13 (diff) | |
download | dexon-sol-tools-4ddb86df53802fe5c965724d965d281528a97971.tar dexon-sol-tools-4ddb86df53802fe5c965724d965d281528a97971.tar.gz dexon-sol-tools-4ddb86df53802fe5c965724d965d281528a97971.tar.bz2 dexon-sol-tools-4ddb86df53802fe5c965724d965d281528a97971.tar.lz dexon-sol-tools-4ddb86df53802fe5c965724d965d281528a97971.tar.xz dexon-sol-tools-4ddb86df53802fe5c965724d965d281528a97971.tar.zst dexon-sol-tools-4ddb86df53802fe5c965724d965d281528a97971.zip |
Merge pull request #360 from 0xProject/feature/editorconfig
Add .editorconfig
-rw-r--r-- | .editorconfig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..2f6d5e880 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig http://EditorConfig.org + +# top-most EditorConfig file +root = true + +# All files +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +indent_style = space +indent_size = 4 |