skip to Main Content

Visual Studio Code – Unexpected ANSI escape codes on VS Code integrated terminal

My visual studio code integrated terminal is showing some escaped ANSI codes on every command line: x1b7x1b[38x3b2x3b122x3b122x3b122m ❮ x1b[0mx1b[38x3b2x3b159x3b211x3b86m Those are the current settings related to the terminal: "terminal.integrated.fontSize": 12, "terminal.integrated.cursorStyle": "line", "terminal.integrated.defaultProfile.windows": "PowerShell", "terminal.integrated.enableImages": true, "terminal.integrated.persistentSessionReviveProcess": "never" I also…

VIEW QUESTION

Visual Studio Code – Does ESLint extension use .eslintrc.json in the project?

I have added ESLint to my TypeScript project by installing: npm install eslint @typescript-eslint/eslint-plugin @typescript-eslint/parser --save-dev and adding this script: "lint": "eslint src/**/*.ts" and this config file .eslintrc.json: { "parser": "@typescript-eslint/parser", "parserOptions": { "project": "./tsconfig.json" }, "plugins": ["@typescript-eslint"], "extends": ["eslint:recommended",…

VIEW QUESTION

VSCode crashes on Ubuntu 22.04.4 LTS

I installed VSCode using snap package in Ubuntu Software manager. Now it is crashing on startup when trying to open it. When using $ code --verbose to create a log in terminal, I get: [0606/103410.331999:ERROR:process_memory_range.cc(75)] read out of range [0606/103410.332035:ERROR:process_memory_range.cc(75)]…

VIEW QUESTION
Back To Top
Search