EditorConfigSnippets
一组EditorConfig文件的片段
详细信息
安装量
- 总计 12K
- Win 6K
- Mac 4K
- Linux 2K
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | 6月22日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
Mac | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
说明文件
EditorConfigSnippets
EditorConfigSnippets 是一组用于 .editorconfig
文件的片段。
安装
建议安装 EditorConfig。
使用 Package Control
要安装此插件,您可以使用 Package Control 并查找 EditorConfigSnippets。
使用 Git
将此存储库克隆到 Packages 文件夹
cd /path/to/Packages
git clone https://github.com/mfuentesg/EditorConfigSnippets
可用的片段
片段是独立的,所以每个片段都有相似的性质。每个片段都适用于 .editorconfig
范围,并且您可以使用以下触发器调用它。
- editor-base
- editor-bash
- editor-c
- editor-cpp
- editor-frontend
- editor-go
- editor-javascript
- editor-md
- editor-php
- editor-perl
- editor-python
- editor-ruby
- editor-txt
我推荐的设置
root = true
[*]
max_line_length = 100
end_of_line = lf
indent_style = space
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.sh]
indent_size = 2
[*.html]
indent_size = 2
[*.{js,json}]
indent_size = 2
[*.{css,styl,scss,less,sass}]
indent_size = 2
[*.php]
indent_size = 4
[*.rb]
indent_size = 2
[*.py]
indent_size = 4
[*.txt]
indent_size = 4
[*.{c,cpp}]
indent_size = 4
trim_trailing_whitespace = false
insert_final_newline = false
[*.go]
indent_size = 2
indent_style = tab
[*.md]
trim_trailing_whitespace = false
indent_style = tab
贡献
欢迎您提交包含您最喜欢的规定的PR。