53 lines
996 B
INI
53 lines
996 B
INI
##########################################
|
|
# Common Settings
|
|
##########################################
|
|
|
|
# This file is the top-most EditorConfig file
|
|
root = true
|
|
|
|
# All Files
|
|
[*]
|
|
charset = utf-8
|
|
insert_final_newline = true
|
|
indent_size = 4
|
|
indent_style = space
|
|
trim_trailing_whitespace = true
|
|
|
|
##########################################
|
|
# File Extension Settings
|
|
##########################################
|
|
|
|
# Various XML Configuration Files
|
|
[*.{xml,xlf,config,config.template,props,targets,nuspec,resx,ruleset,vsixmanifest,vsct}]
|
|
indent_size = 2
|
|
|
|
# JSON Files
|
|
[*.{json,json5}]
|
|
indent_size = 2
|
|
|
|
# YAML Files
|
|
[*.{yml,yaml}]
|
|
indent_size = 2
|
|
|
|
# Markdown Files
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|
|
|
|
# Web Files
|
|
[*.{htm,html,css,sass,scss,less,svg,vue}]
|
|
indent_size = 2
|
|
|
|
# Javascript/Typescript files
|
|
[*.{js,jsx,ts,tsx}]
|
|
indent_size = 2
|
|
|
|
# Batch Files
|
|
[*.{cmd,bat}]
|
|
end_of_line = crlf
|
|
|
|
# Bash Files
|
|
[*.sh]
|
|
end_of_line = lf
|
|
|
|
[*.sql]
|
|
charset = unset |