Quando ho usato eslint nel progetto gulp ho riscontrato un problema con errore come questo
Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
e sto usando l'ambiente Windows per il gulp in esecuzione e l'intero registro degli errori è riportato di seguito
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
Ho anche incluso il file extra.js come errore che indica un possibile errore.
function getWindowHeight() {
return window.innerHeight;
}
getWindowHeight();