让编码习气穿越编辑器editorConfig

编辑器就是生产力,相符个人编程习气和作风的编辑器能给开辟带来轻松愉快的心境和生产力。前端开辟中越来越多东西须要经由过程设置文件来举行设置,如今编辑器也运用了这一要领。

意义

存在的目标是项目代码在差别的编辑器中能够有雷同的视觉显现,运用差别的编辑器开辟也能够坚持一向的代码作风和编程习气。

解释要领

解释标记”#”,运用解释标记能够将一行解释

优先级

设置文件的优先级高于编辑器的设置

indent_style

可选项tab和space,缩进款式

indent_size

当indent_style为space时,缩进对应的空格数目。值为整数

tab_width

当indent_style为tab时,缩进的宽度值

end_of_line

设置换行标记,可选值 ‘lf’ ‘cr’ ‘crlf’

insert_final_newline

每一个文件末端是不是包括一个空行,jslint的范例在代码末端须要有一个空行用来表明代码的完毕。可选值 ‘true’或许 ‘false’

trim_trailing_whitespace

删除每一行末端的空缺字符,可选值 ‘true’ 或许 ‘false’

示例

# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Matches multiple files with brace expansion notation
# Set default charset
[*.{js,py}]
charset = utf-8

# 4 space indentation
[*.py]
indent_style = space
indent_size = 4

# Tab indentation (no size specified)
[Makefile]
indent_style = tab

# Indentation override for all JS under lib directory
[lib/**.js]
indent_style = space
indent_size = 2

# Matches the exact files either package.json or .travis.yml
[{package.json,.travis.yml}]
indent_style = space
indent_size = 2

参考地点

editerconfig.org

    原文作者:小铀蔻德尔
    原文地址: https://segmentfault.com/a/1190000017182899
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞