What is the setting variable to turn this off
or if you know why Prettier - Javascript does format the code but some lines are still marked in color like here
I only have Prettier-eslint installed in command line so not sure what else can VSCode trigger
Those are gutter indicators that Vscode adds to files within a git repository. I don't see any way to get rid of them - other than staging or committing the changes.
You can change their colors within settings.json so you could change them to the same color as the editor background to hide them. For example,
"workbench.colorCustomizations": {
"editorGutter.addedBackground": "#333",
"editorGutter.deletedBackground": "#333",
"editorGutter.modifiedBackground": "#333",
"editor.background": "#333",
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With