base.md 383 B

遵循同一套编码规范,通过 .editorconfig 统一编辑器配置。

[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true

缩进

使用 2 个空格进行缩进,不使用 tab。

换行

  • 换行符使用 Unix 风格,即 LF(Linux 换行符)。
  • 文件末尾空行。