Last active
April 12, 2018 08:48
-
-
Save tyom/fe5fe10b14f9f9e4e6a7 to your computer and use it in GitHub Desktop.
Editorconfig settings
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 | |
indent_style = space | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
indent_size = 2 | |
[*.py] | |
indent_size = 4 | |
[Makefile] | |
indent_style = tab | |
indent_size = 4 | |
[*.md] | |
trim_trailing_whitespace = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment