Created
March 31, 2014 03:39
-
-
Save chaoren1641/9884829 to your computer and use it in GitHub Desktop.
editorConfig
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 | |
## 文件新建除JS外使用GBK,JS文件使用utf-8 | |
[*] | |
end_of_line = lf | |
charset = gbk | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
indent_style = space | |
indent_size = 4 | |
[**.coffee] | |
charset = utf-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment