Created
April 15, 2017 20:15
-
-
Save buoto/7e2cff6c17c108658fc751df845b1040 to your computer and use it in GitHub Desktop.
Editorconfig for C/C++ project
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
# top-most EditorConfig file | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
end_of_line = lf | |
insert_final_newline = true | |
# Tab indentation (no size specified) | |
[Makefile] | |
indent_style = tab | |
[*.{c,h,cpp,hpp}] | |
indent_size = 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment