Created
February 21, 2020 18:57
-
-
Save burubur/8ac9916c9de3b5114d193274f9d3b4a4 to your computer and use it in GitHub Desktop.
common .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
; http://editorconfig.org/ | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
indent_style = space | |
[*.{go,mod}] | |
indent_size = 4 | |
[*.{json,yaml,yml}] | |
indent_size = 2 | |
[{Makefile,**.mk}] | |
indent_style = tab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment