I just installed a beautify extension for vs code
I want to have my code beautified whenever I save a file, but can\'t figure out how to configure it that way.
I
I visited this question because my beautify was not working in VS code And Adding the above mentioned setting fixed my issue but if you want your beautify to solve linting issue as well then you gonna have to added the below setting along with the above like this : (Hope this helps anyone)
{
"editor.formatOnSave": true,
"tslint.autoFixOnSave": true
}