angular-cn/.editorconfig
Filipe Silva dc5fc21a13 chore: remove end_of_line from editorconfig (#2635)
The `end_of_line` setting causes issues on Windows machines that have `autocrlf` set to true (the default): https://git-scm.com/book/tr/v2/Customizing-Git-Git-Configuration#Formatting-and-Whitespace
2016-10-19 18:17:06 +01:00

24 lines
360 B
INI

# http://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
max_line_length = 0
trim_trailing_whitespace = false
[*.jade]
max_line_length = 0
trim_trailing_whitespace = false
# Indentation override
#[lib/**.js]
#[{package.json,.travis.yml}]
#[**/**.js]