Fix bundle creation on Windows which was failing due to \r\n line endings in code mirror. Fixes #2908
parent
fdb4fa454a
commit
5f5c590ffd
|
@ -30,7 +30,7 @@ module.exports = {
|
||||||
],
|
],
|
||||||
'linebreak-style': [
|
'linebreak-style': [
|
||||||
'error',
|
'error',
|
||||||
'unix'
|
process.platform === 'win32' ? 'windows' : 'unix'
|
||||||
],
|
],
|
||||||
'quotes': [
|
'quotes': [
|
||||||
'error',
|
'error',
|
||||||
|
|
Loading…
Reference in New Issue