Skip to content

Instantly share code, notes, and snippets.

@glaucomorais
Last active August 24, 2016 22:26
Show Gist options
  • Save glaucomorais/90fe0f900d6dda8833d383d1f4daae9a to your computer and use it in GitHub Desktop.
Save glaucomorais/90fe0f900d6dda8833d383d1f4daae9a to your computer and use it in GitHub Desktop.
Editorconfig para projetos PHP
# Este unifica o estilo de código para diferentes editores e IDEs
# This unifies the coding style for differents editors and IDEs
# editorconfig.org
root = true
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_brace_style = K&R
indent_style = space
indent_size = 4
quote_type = single
spaces_around_brackets = true
spaces_around_operators = true
[*.js]
indent_size = 2
[*.json]
indent_size = 2
quote_type = double
[*.css]
indent_size = 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment