mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-21 16:27:39 -06:00
Fix bundle creation on Windows which was failing due to \r\n line endings in code mirror. Fixes #2908
This commit is contained in:
parent
fdb4fa454a
commit
5f5c590ffd
@ -30,7 +30,7 @@ module.exports = {
|
||||
],
|
||||
'linebreak-style': [
|
||||
'error',
|
||||
'unix'
|
||||
process.platform === 'win32' ? 'windows' : 'unix'
|
||||
],
|
||||
'quotes': [
|
||||
'error',
|
||||
|
Loading…
Reference in New Issue
Block a user