Since I'm relatively new to Visual Studio Code, I recently encountered an issue with the "ESLint" extension where my typos were not being detected. These typos were in actual pieces of code, not just comments, which made it tricky to spot the errors. My previous experience was mostly with Brackets.
I've attempted to investigate within the ESLint extension files like eslintrc.js, package-lock.json, and package.json. I even checked my "code-workspace" file, but I couldn't pinpoint the exact problem.
document.body.style.backgroundCOlor = "#f00";
The code mentioned above refuses to function properly due to a simple upper-case "O". Changing it to lower-case allows the code to work as intended. It took me a while to identify this typo since it wasn't flagged as an error by ESLint.
Any assistance on this matter would be highly appreciated.