Last active
October 29, 2015 16:07
-
-
Save andersao/ac1c08da3bc6f17edc9d to your computer and use it in GitHub Desktop.
Editor Config
This file contains 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
# This file is for unifying the coding style for different editors and IDEs | |
# editorconfig.org | |
root = true | |
[*] | |
end_of_line = lf | |
charset = utf-8 | |
indent_style = tab | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
[*.bat] | |
end_of_line = crlf | |
[*.yml] | |
indent_style = space | |
indent_size = 2 | |
[*.php] | |
indent_size = 4 | |
[*.json] | |
indent_size = 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment