DEV Community

Discussion on: Help setting up ESLint and Prettier in VSCode

Collapse
 
asjas profile image
A-J Roos • Edited

You have to tell VS Code to show eslint in the bottom toolbar. You can set this option in the settings.json to have that at the bottom toolbar.

"eslint.alwaysShowStatus": true,

You haven't posted what extensions you are using but I'm suspecting that the Babel JavaScript is coming from an extension that has something to do with babel.

So check if you have such an extension installed and whether removing it fixes the language options.

Collapse
 
jastuccio profile image
jastuccio

I also have Babel JavaScript(syntax highlighting) by Michael McDermott installed. The Babel label doesn't seem like a problem now.

Thank you for the quick answer A-J!