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:
parent
72edc9262b
commit
0d117a9191
|
@ -21,6 +21,8 @@
|
||||||
// indentation
|
// indentation
|
||||||
"tab_size": 2,
|
"tab_size": 2,
|
||||||
"translate_tabs_to_spaces": true,
|
"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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue