Skip to content

Instantly share code, notes, and snippets.

@thadeu
Last active June 27, 2017 16:36
Show Gist options
  • Save thadeu/0d26d5c677842a8849c0761da581e284 to your computer and use it in GitHub Desktop.
Save thadeu/0d26d5c677842a8849c0761da581e284 to your computer and use it in GitHub Desktop.
Default .editorconfig
; Pra todos os arquivos
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
; Estilo de identação em arquivos HTML
[*.html]
indent_style = space
indent_size = 2
[*.yml]
indent_style = space
indent_size = 2
; Estilo de identação em arquivos HTML
[*.erb]
indent_style = space
indent_size = 2
; Estilo de identação em arquivos CSS
[*.{css,scss,sass}]
indent_style = space
indent_size = 2
; Estilo de identação em arquivos JS dentro do diretório Scripts
[*.js]
indent_style = space
indent_size = 2
; Estilo de identação em arquivos JS dentro do diretório Scripts
[*.rb]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment