Ao usar eslint no projeto gulp, encontrei um problema com erro como este
Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
e estou usando o ambiente Windows para o gulp em execução e todo o log de erros é fornecido abaixo
Kiran (master *) Lesson 4 $ gulp
Using gulpfile c:\Users\Sai\Desktop\web-build-tools\4\
gulpfile.js
Starting 'styles'...
Finished 'styles' after 17 ms
Starting 'lint'...
'lint' errored after 1.14 s
ESLintError in plugin 'gulp-eslint'
sage: Expected linebreaks to be 'LF' but found 'CRLF'.
ails: fileName: c:\Users\Sai\Desktop\web-build-tools\4\js\extra.js
$>Users\Sai\Desktop\web-build-tools\4\js\extra.js
error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
Também incluí o arquivo extra.js como o erro que indica um possível erro.
function getWindowHeight() {
return window.innerHeight;
}
getWindowHeight();