Skip to content

Instantly share code, notes, and snippets.

@pinebright
Created December 2, 2016 06:03
Show Gist options
  • Save pinebright/551328b165127c86a0b1108ac013f333 to your computer and use it in GitHub Desktop.
Save pinebright/551328b165127c86a0b1108ac013f333 to your computer and use it in GitHub Desktop.
よく使うEditorConfig
# 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