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
24 lines
360 B
INI
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]
|