cleanup(markdown): Prettier format all markdown @ 80 char width (#10714)

This commit is contained in:
Richie Foreman
2025-10-09 08:17:37 -04:00
committed by GitHub
parent 0cd490a9b8
commit a08938010c
60 changed files with 4796 additions and 1733 deletions
+8 -4
View File
@@ -2,18 +2,22 @@
## Running the Extension
To run the extension locally for development, we recommend using the automatic watch process for continuous compilation:
To run the extension locally for development, we recommend using the automatic
watch process for continuous compilation:
1. **Install Dependencies** (from the root of the repository):
```bash
npm install
```
2. **Open in VS Code:** Open this directory (`packages/vscode-ide-companion`) in your VS Code editor.
3. **Start Watch Mode:** Run the watch script to compile the extension and monitor changes in both **esbuild** and **TypeScript**:
2. **Open in VS Code:** Open this directory (`packages/vscode-ide-companion`)
in your VS Code editor.
3. **Start Watch Mode:** Run the watch script to compile the extension and
monitor changes in both **esbuild** and **TypeScript**:
```bash
npm run watch
```
4. **Launch Host:** Press **`F5`** (or **`fn+F5`** on Mac) to open a new **Extension Development Host** window with the extension running.
4. **Launch Host:** Press **`F5`** (or **`fn+F5`** on Mac) to open a new
**Extension Development Host** window with the extension running.
### Manual Build