updated sublime-project settings

'default_line_ending' is set to LF so it doesn't break line-ending-sensitive specs on Windows (like oneboxer's)
This commit is contained in:
Régis Hanol 2013-03-01 15:23:10 +01:00
parent 72edc9262b
commit 0d117a9191
1 changed files with 3 additions and 1 deletions

View File

@ -21,6 +21,8 @@
// indentation
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
"trim_trailing_white_space_on_save": true,
// ensure line endings is linux style (even when on Windows)
"default_line_ending": "LF"
}
}