Created
April 27, 2018 23:35
-
-
Save allysonsilva/98f4ab3e953a8074cf7bf3af7177ad48 to your computer and use it in GitHub Desktop.
My EditorConfig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# EditorConfig is awesome: http://EditorConfig.org | |
# top-most EditorConfig file | |
root = true | |
# all files | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 4 | |
indent_style = space | |
insert_final_newline = true | |
max_line_length = 80 | |
trim_trailing_whitespace = true | |
[*.{xml,py,java,go,sh}] | |
indent_style = space | |
indent_size = 4 | |
[{*.md,*.yml}] | |
indent_style = space | |
indent_size = 2 | |
[{.gitattributes,.gitignore,.gitmodules}] | |
indent_style = space | |
[Makefile] | |
indent_style = tab | |
indent_size = 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment