I run VSC, I use the configuration file for airbnb for ESlint.
And when I wanted to test it, I tried this:
const a = 'a';
const b = `${a}Hi`;
const d = function () {
return b;
};
d();
The problem is that it keeps giving me errors about linebreaks:
Expected linebreaks to be 'LF' but found 'CRLF'. (linebreak-style)
There are 6 type of this error, plus this:
Unexpected unnamed function. (func-names)
It's getting annoying and I'm guessing it is because of the guide used, right?