From 7b624d5e198eec2b183e12b0be772647b192e98a Mon Sep 17 00:00:00 2001 From: Patrick Porto Date: Mon, 7 May 2018 00:27:50 -0300 Subject: [PATCH] Suporte a EditorConfig --- .editorconfig | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..be1722b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,23 @@ + + +# EditorConfig is awesome: http://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +[*.py] +indent_style = space +indent_size = 4 + +[Makefile] +indent_style = tab + +[{*.js, *.json,*.yml}] +indent_style = space +indent_size = 2 +