From 7a6dd64e5219597b87bfa8a09d22dcfa5d4799fd Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Wed, 27 Sep 2017 15:43:37 -0400 Subject: [PATCH] Add editorconfig file to project --- a0/.editorconfig | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 a0/.editorconfig diff --git a/a0/.editorconfig b/a0/.editorconfig new file mode 100644 index 0000000..d6f1831 --- /dev/null +++ b/a0/.editorconfig @@ -0,0 +1,47 @@ + +#EditorConfig +http://EditorConfig.org + + +# Top-most EditorConfig File. +root = true + + +# Unix-style newlines with a newline ending every file. +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + + + +# Set properties for most filetypes +[*.{css,scss,py,js,json,php,java}] +# Set character encoding +charset = utf-8 + +# Set tabbing styles. +indent_style = space +indent_size = 4 + + + +# Set properties for html +[*.{html,blade.php}] +# Set character encoding +charset = utf-8 + +# Set tabbing styles. +indent_style = space +indent_size = 2 + + + +# Set properties for C +[*.{c}] +# Set character encoding +charset = utf-8 + +# Set tabbing styles. +indent_style = space +indent_size = 4 -- GitLab