.editorconfig文件

简介: .editorconfig文件

editorconfig

.editorconfig文件

EditorConfig帮助开发人员在不同的编辑器和IDE之间定义和维护一致的编码样式

adonisjs项目中的一个示例

root = true

[*]
indent_size = 2
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

常规配置

# http://editorconfig.org

root = true

# 对所有文件生效
[*]
# utf-8编码
charset = utf-8
# 空格形式缩进2空格
indent_style = space
indent_size = 2
# Linux换行符
end_of_line = lf
# 使用单引号
quote_type = single
# 结尾插入新行
insert_final_newline = true
# 去除结尾空格
trim_trailing_whitespace = true

# 对后缀名为 md 的文件生效
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false

VSCode 插件: EditorConfig for VS Code

            </div>
目录
相关文章
|
8月前
|
存储 Java 程序员
文件的介绍
文件的介绍
119 1
|
8月前
|
存储 Python 内存技术
什么是文件?
什么是文件?
248 0
|
8月前
文件
文件操作。
41 0
|
NoSQL Python
PythonExcel文件
在Python中,我们可以使用许多库来处理Excel文件,其中最常用的是pandas和openpyxl。
89 0
|
数据安全/隐私保护
p文件如何转为m文件
如果你是MATLAB爱好者,你一定知道MATLAB P文件,但是,你是否也和许多人一样,摸不着头脑?难道你也经常遇到MATLAB P文件加密问题,难以阅读和研究吗?那么,你需要一个MATLAB P文件解密工具!
|
编译器 数据库 C语言
文件(上)——“C”
文件(上)——“C”
|
Go 数据安全/隐私保护 Windows
WinNTSetup V5.3.0 Bata5 单文件版
WinNTSetup 是一款Windows系统硬盘安装器,支持从PE和本地安装系统,支持支持NT内核的系统。
WinNTSetup V5.3.0 Bata5 单文件版
|
IDE Linux 开发工具
.editorconfig文件
.editorconfig文件
79 0
|
存储
Fasta和Fastq文件
Fasta和Fastq文件
282 0