Skip to content

Instantly share code, notes, and snippets.

@beachcomber
Created June 27, 2022 11:04
Show Gist options
  • Save beachcomber/901306f3fcd234311e49941bb16144c8 to your computer and use it in GitHub Desktop.
Save beachcomber/901306f3fcd234311e49941bb16144c8 to your computer and use it in GitHub Desktop.
editorconfig file
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
# Matches multiple files with brace expansion notation
# Set default charset
[*.{js,vue}]
charset = utf-8
# 2 space indentation
[*.js]
indent_style = space
indent_size = 2
# 2 space indentation
[*.vue]
indent_style = space
indent_size = 2
# Tab indentation (no size specified)
[Makefile]
indent_style = space
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment