Created
June 27, 2022 11:04
-
-
Save beachcomber/901306f3fcd234311e49941bb16144c8 to your computer and use it in GitHub Desktop.
editorconfig file
This file contains 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: 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