How to remove squiggly lines from showing on VS Code for ESlint & Prettier setup. I want ESlint to do its work, format and fix errors on save but don't want to see the squiggly lines. Not sure if its even possible as I couldn't find any info on this. Looks like Prettier is causing all the unwanted squiggly lines
Using Microsoft's ESLint plugin, I resolved this behavior by adding 'prettier/prettier': 0
to the rules: []
section of my .eslintrc.js
file.
This tells the plugin to not consider this an error. And formatting with prettier works exactly the same as before.