Disable ESLint Parser Error Messages - VSCode

I have ESLint configured with vscode using a plugin, now I am wondering if there is a way I can stop ESlint to show me syntax errors of syntax, so I can instead look at the syntax errors that the default salsa language service provides.

+4
source share
1 answer

Open settings.json parameters and add property: "eslint.enable": false

Check: https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint

+6
source

All Articles