Created
April 11, 2019 07:45
-
-
Save jeckel/3e01b2d4e3951cccbeac500e43abda90 to your computer and use it in GitHub Desktop.
My editor config file
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
# EditorConfig is a normalisation file compatible with different editors | |
# Find more documentation here : http://editorconfig.org/#download | |
# top-most EditorConfig file | |
root = true | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
# Javascript | |
[*.{js,json,ts}] | |
indent_style = space | |
indent_size = 4 | |
# Yaml | |
[*.yml] | |
indent_style = space | |
indent_size = 2 | |
# SQL | |
[*.sql] | |
indent_style = space | |
indent_size = 2 | |
# PHP | |
[*.php] | |
indent_style = space | |
indent_size = 4 | |
[Makefile] | |
indent_style = tab | |
indent_size = 4 | |
tab_width = 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment