工具

一些开发相关配置

直接 git clone git@github.com:hxfsc/front-end-project.git

  • Sublime Text VSCode 安装 editorconfig 插件
  • 在项目目录新建 .editorconfig 文件 内容如下
1
2
3
4
5
6
7
8
9
root = true

[*]
charset = utf-8
indent_style = tab
indent_size = 4
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

Read More...