How can you disable Gutter Indicators in VS Code?

It is possible to change it in settings.json Ctrl+, “scm.diffDecorations”: “all” | “gutter” | “overview” | “none” Or you can make them transparent: “workbench.colorCustomizations”: { // Gutter indicators (left) “editorGutter.modifiedBackground”: “#0000”, “editorGutter.addedBackground”: “#0000”, “editorGutter.deletedBackground”: “#0000”, // Scrollbar indicators (right) “editorOverviewRuler.addedForeground”: “#0000”, “editorOverviewRuler.modifiedForeground”: “#0000”, “editorOverviewRuler.deletedForeground”: “#0000” }

How can I open Visual Studio Code’s ‘settings.json’ file?

To open the User settings: Open the command palette (either with F1 or Ctrl+Shift+P) Type “open settings” You are presented with a few options¹, choose Open User Settings (JSON) This image was taken in the VS Code online editor Which, from the manual and depending on platform, is one of: Windows %APPDATA%\Code\User\settings.json² macOS $HOME/Library/Application\ Support/Code/User/settings.json … Read more

Why do I keep getting “[eslint] Delete `CR` [prettier/prettier]”?

Try setting the “endOfLine”:”auto” in your .prettierrc (or .prettierrc.json) file (inside the object) Or set ‘prettier/prettier’: [ ‘error’, { ‘endOfLine’: ‘auto’, } ] inside the rules object of the eslintrc file. If you are using windows machine endOfLine can be “crlf” basing on your git config.