Disable the line ending check entirely in eslint, as the previous platform-specific fix doesn't work with all versions.

This commit is contained in:
Dave Page 2017-11-23 09:34:44 +00:00
parent 05a00f4ac8
commit fd077e2536

View File

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