Fix bundle creation on Windows which was failing due to \r\n line endings in code mirror. Fixes #2908

pull/6/head
Maxim Zakharov 2017-11-23 09:02:00 +00:00 committed by Dave Page
parent fdb4fa454a
commit 5f5c590ffd
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ module.exports = {
],
'linebreak-style': [
'error',
'unix'
process.platform === 'win32' ? 'windows' : 'unix'
],
'quotes': [
'error',