diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-06-22 23:37:40 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-06-22 23:37:40 -0300 |
commit | 229f607d8ab61c5c22ca5b7b82a24d9af83c14e9 (patch) | |
tree | f677991af25464cd6243479c4805dc83892a482b | |
parent | ae28305d7cbe48800c7400992091711517c961ef (diff) | |
parent | 956e0a85640bedd0ec7e23311cd3cf131bb3ffb7 (diff) |
Merge pull request #2150 from guilhermefelipecgs/add_editor_config
Add .editorconfig
-rw-r--r-- | .editorconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..e19057f0e8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = tab + +[.travis.yml] +indent_style = space +indent_size = 2 |