Last active
August 24, 2016 22:26
-
-
Save glaucomorais/90fe0f900d6dda8833d383d1f4daae9a to your computer and use it in GitHub Desktop.
Editorconfig para projetos PHP
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
# 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