From 5f5c590ffd2a0d33ea38d35fd9a66d98468f998c Mon Sep 17 00:00:00 2001 From: Maxim Zakharov Date: Thu, 23 Nov 2017 09:02:00 +0000 Subject: [PATCH] Fix bundle creation on Windows which was failing due to \r\n line endings in code mirror. Fixes #2908 --- web/.eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/.eslintrc.js b/web/.eslintrc.js index bd0cd065d..9c1993db6 100644 --- a/web/.eslintrc.js +++ b/web/.eslintrc.js @@ -30,7 +30,7 @@ module.exports = { ], 'linebreak-style': [ 'error', - 'unix' + process.platform === 'win32' ? 'windows' : 'unix' ], 'quotes': [ 'error',