FE Workflow
standard-code>vscode

vscode

settings and extensions

LOUSANPANG's VS Code SettingsAnthony's VS Code Settings

.vscode/
  |- extensions.json # 插件
  |- setting.json # 配置
  |- global.code-snippets # 代码片段
.editorconfig # 跨编辑器代码配置

.editorconfig

EditorConfig

# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

[*.md]
insert_final_newline = false
trim_trailing_whitespace = false

# Unix-style newlines with a newline ending every file
[*]
charset = utf-8
indent_style = space
indent_size = 2
trim_trailing_whitespace = true  # 去除行首的任意空白字符
end_of_line = lf # 控制换行类型(lf | cr | crlf)
insert_final_newline = true # 始终在文件末尾插入一个新行
max_line_length = 100
vscode
settings and extensions
.editorconfig