- 添加Git配置文件(.gitignore, .gitattributes) - 添加编辑器配置(.editorconfig) - 添加包管理器配置(.npmrc, package.json) - 添加依赖锁定文件(package-lock.json, pnpm-lock.yaml) - 添加TypeScript配置(tsconfig.json)
9 lines
146 B
INI
9 lines
146 B
INI
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true |