Disable the line ending check entirely in eslint, as the previous platform-specific fix doesn't work with all versions.
parent
05a00f4ac8
commit
fd077e2536
|
@ -28,10 +28,7 @@ module.exports = {
|
|||
'error',
|
||||
2
|
||||
],
|
||||
'linebreak-style': [
|
||||
'error',
|
||||
process.platform === 'win32' ? 'windows' : 'unix'
|
||||
],
|
||||
'linebreak-style': 0,
|
||||
'quotes': [
|
||||
'error',
|
||||
'single'
|
||||
|
|
Loading…
Reference in New Issue