Created
December 2, 2016 06:03
-
-
Save pinebright/551328b165127c86a0b1108ac013f333 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 is awesome: http://EditorConfig.org | |
# top-most EditorConfig file | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
end_of_line = lf | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
# 4 space indentation | |
# please change for your project | |
[*.{py,sh}] | |
indent_style = space | |
indent_size = 4 | |
# 2 space indentation | |
[{*.{json,yml},Vagrantfile}] | |
indent_style = space | |
indent_size = 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment