Last active
December 28, 2015 20:19
-
-
Save chaoren1641/7556472 to your computer and use it in GitHub Desktop.
Aliyun UED 前端开发Tab规范
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# editorconfig文件定义一致的code style规范 | |
# 根据不同的开发IDE或编辑器统一代码风格 | |
# 详情见 editorconfig.org | |
root = true | |
## 除了jade文件以外,全部以4个空格作为tab | |
[*] | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
indent_style = space | |
indent_size = 4 | |
[**.jade] | |
indent_style = space | |
indent_size = 2 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment