Last active
March 16, 2018 05:38
-
-
Save jorandradefig/9474ae8e156ce67d28e1edf821f83d8b to your computer and use it in GitHub Desktop.
EditorConfig Template
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
| # Editor configuration, see http://editorconfig.org | |
| root = true | |
| [*] | |
| charset = utf-8 | |
| indent_style = space | |
| indent_size = 2 | |
| insert_final_newline = true | |
| trim_trailing_whitespace = true | |
| [*.md] | |
| max_line_length = off | |
| trim_trailing_whitespace = false | |
| [*.{py,rst,txt}] | |
| indent_style = space | |
| trim_trailing_whitespace = true | |
| indent_size = 4 | |
| end_of_line = lf | |
| [*.yml] | |
| indent_style = space | |
| indent_size = 2 | |
| end_of_line = lf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment