Created
December 9, 2019 09:49
-
-
Save fabarea/467e06d75ae8139d7b7810a5bae533b4 to your computer and use it in GitHub Desktop.
Minimal .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 | |
indent_size = 4 | |
indent_style = space | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | |
[*.md] | |
# Markdown uses the trailing whitespaces. | |
# https://daringfireball.net/projects/markdown/syntax#block | |
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