Last active
June 7, 2017 07:47
-
-
Save krisanalfa/9f19a62e16800612939abdc4bc60e695 to your computer and use it in GitHub Desktop.
Global 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 is awesome: http://EditorConfig.org | |
# top-most EditorConfig file | |
root = true | |
# Base | |
[*] | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
# 4 space indentation | |
[*.{python,php,cs}] | |
indent_size = 4 | |
# Overriding *.php | |
[*.blade.php] | |
indent_size = 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment