Created
March 29, 2018 20:08
-
-
Save spencerwi/c48b7655594a08d2f1bd607fa97a8e14 to your computer and use it in GitHub Desktop.
My editorconfig
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 is the "system-level" editorconfig | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
# 4-space indent for JSON | |
[*.json] | |
indent_style = space | |
indent_size = 4 | |
# Tab indentation for Makefiles | |
[Makefile] | |
indent_style = tab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment