in every file i am getting i am getting this error by eslint, as you can see in the picture above the red color on the scroll bar.
I found some solution for this on stackoverflow but could not find the most appropriate solution for myself.
javascript - Expected linebreaks to be ‘LF’ but found ‘CRLF’ linebreak-style - Stack Overflow
From the ESLint documentation, this line break rule should be fixable.
You can either configure VSCode to auto fix eslint warnings or do it with the command line:
$ eslint --fix --ext .js .
Hope this helps!