Last active
July 4, 2020 23:09
-
-
Save ivangabriele/51871f6a1e1799546551112fd7af0584 to your computer and use it in GitHub Desktop.
My most common EditorConfig configuration.
This file contains hidden or 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
# https://editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 2 | |
indent_style = space | |
insert_final_newline = true | |
max_line_length = 120 | |
trim_trailing_whitespace = true | |
[{Makefile,go.mod,go.sum,*.go,.gitmodules}] | |
indent_style = tab | |
indent_size = 4 | |
[*.md] | |
trim_trailing_whitespace = false | |
[*.nix] | |
indent_size = 1 | |
[COMMIT_EDITMSG] | |
max_line_length = 0 | |
[Dockerfile] | |
indent_size = 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment