Files
orange-admin/OrangeFormsOpen-VUE3/.editorconfig

25 lines
765 B
INI
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# editorconfig.org
#项目里读editorcongig文件时读到此文件即可不用继续往上搜索
root = true
# 规范指定:全部文件
[*]
# 文档的字符编码使用UTF-8 - Unicode 字符编码;
# 常见的字符编码有两种1.UTF-8 - Unicode 字符编码2.ISO-8859-1 - 拉丁字母表的字符编码。
charset = utf-8
#tab类型空格不使用制表符
indent_style = space
#tab键长度是两个空格
indent_size = 2
#跟系统有关。win用cr lflinux/unix用lfmac用cr。
end_of_line = lf
#保存文件时,在最后一行后加上一行空行
insert_final_newline = true
#去掉每行代码最后多余的空格
trim_trailing_whitespace = true
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false