gulpプロジェクトでeslintを使用すると、このようなエラーの問題が発生
Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
し、実行中のgulpにWindows環境を使用しています。エラーログ全体は以下のとおりです。
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
間違いの可能性を示すエラーとしてextra.jsファイルも含めています。
function getWindowHeight() {
return window.innerHeight;
}
getWindowHeight();