Created
June 12, 2017 09:37
-
-
Save jrgcubano/2e1f43276dd68e05295acb70bc8d4dc4 to your computer and use it in GitHub Desktop.
Check 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 | |
root = true | |
[*] | |
charset = utf-8 | |
[{package.json}] | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf | |
[*.md] | |
insert_final_newline = false | |
trim_trailing_whitespace = true | |
[*.ps1] | |
indent_style = space | |
indent_size = 2 | |
end_of_line = CRLF | |
[*.cs] | |
indent_style = space | |
indent_size = 4 | |
end_of_line = CRLF | |
[*.cake] | |
indent_style = space | |
indent_size = 4 | |
end_of_line = CRLF | |
[*.js] | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
indent_style = space | |
indent_size = 2 | |
[*.ts] | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
indent_size = 2 | |
end_of_line = lf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment