Created
September 4, 2013 12:59
-
-
Save rodrigoluizgenz/6436590 to your computer and use it in GitHub Desktop.
editorconfig
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
| # editorconfig.org | |
| root = true | |
| # TODOS OS ARQUIVOS | |
| [*] | |
| indent_style = tab | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true | |
| auto_indent = true | |
| copy_with_empty_selection = false | |
| default_encoding = UTF-8 | |
| fallback_encoding = UTF-8 | |
| detect_slow_plugins = false | |
| draw_white_space = all | |
| font_size = 10 | |
| highlight_modified_tabs = true | |
| shift_tab_unindent = true | |
| trim_trailing_white_space_on_save= true | |
| word_wrap = false | |
| [*.md] | |
| trim_trailing_whitespace = false | |
| # Estilo de identação em arquivos HTML | |
| [*.html] | |
| [*.php] | |
| indent_style= tab | |
| indent_size = 4 | |
| # Estilo de identação em arquivos CSS | |
| [*.css] | |
| indent_style= tab | |
| indent_size = 4 | |
| # Estilo de identação em arquivos JS dentro do diretório Scripts | |
| [*.js] | |
| indent_style= tab | |
| indent_size = 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment