Last active
January 27, 2024 05:08
-
-
Save fupfin/60252772d1cca55225c32e4a5501c5ec to your computer and use it in GitHub Desktop.
My default coding style
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 | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
insert_final_newline = true | |
indent_style = space | |
tab_width=8 | |
[*.{java,xml,py,rs}] | |
indent_size = 4 | |
trim_trailing_whitespace = true | |
[*.{xml,yml,json}] | |
indent_size = 2 | |
[*.{js,html,sql,less}] | |
indent_size = 2 | |
[*.{c, cpp, h, hpp}] | |
indent_size = 3 | |
trim_trailing_whitespace = true | |
[Makefile] | |
indent_style = tab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment