.editorconfig 762 B

12345678910111213141516171819202122
  1. # top-most EditorConfig file 表示是最顶层的配置文件,发现设为true时,才会停止查找.editorconfig文件
  2. root = true
  3. # Unix-style newlines with a newline ending every file 对于所有的文件 始终在文件末尾插入一个新行
  4. [*]
  5. end_of_line = lf
  6. insert_final_newline = true
  7. # Matches multiple files with brace expansion notation
  8. # Set default charset 对于所有的js文件,设置文件字符集为utf-8
  9. [*.{js,vue,scss}]
  10. charset = utf-8
  11. # 4 space indentation 控制vue文件类型的缩进大小
  12. [*.js,vue,scss]
  13. indent_style = space
  14. indent_size = 4
  15. # Matches the exact files either package.json or .travis.yml 设置确切文件 package.json/.travis/.yml的缩进类型
  16. [{package.json}]
  17. indent_style = space
  18. indent_size = 2