10000 Add doc note about git blame ignore revs by JustinGrote · Pull Request #5193 · PowerShell/vscode-powershell · GitHub
[go: up one dir, main page]

Skip to content

Add doc note about git blame ignore revs #5193

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,24 @@

1. [Fork and clone][fork] the [vscode-powershell repository](https://github.com/PowerShell/vscode-powershell).

2. [Fork and clone][fork] the [PowerShell Editor Services (PSES) repository](https://github.com/PowerShell/PowerShellEditorServices).
1. [Fork and clone][fork] the [PowerShell Editor Services (PSES) repository](https://github.com/PowerShell/PowerShellEditorServices).
> The `vscode-powershell` folder and the `PowerShellEditorServices` folder should be next to each other on the file
> system. Code in `vscode-powershell` looks for PSES at `../PowerShellEditorServices` if you're building locally so
> PSES must be in that location.

3. Follow the [development instructions](https://github.com/PowerShell/PowerShellEditorServices#development) for
1. Follow the [development instructions](https://github.com/PowerShell/PowerShellEditorServices#development) for
PowerShell Editor Services. **You will need to complete this step before proceeding**.

4. Install [Node.js](https://nodejs.org/en/) 18.x or higher.
1. Install [Node.js](https://nodejs.org/en/) 18.x or higher.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
1. Install [Node.js](https://nodejs.org/en/) 18.x or higher.
1. Install [Node.js](https://nodejs.org/en/) 20.x or higher.

As long as the line was touched.


5. Install [Visual Studio Code](https://code.visualstudio.com).
1. Install [Visual Studio Code](https://code.visualstudio.com).
Open the multi-root workspace file in this repo, `extension-dev.code-workspace`.
> This has a set of recommended extensions to install and provides tasks.
> The ESLint formatter will require you to install ESLint globally, using `npm install -g eslint`.
> Otherwise VS Code will erroneously complain that it isn't able to use it to format TypeScript files.

1. (optional) Set `git config blame.ignoreRevsFile .git-blame-ignore-revs` to ignore formatting-related commits.

[fork]: https://help.github.com/articles/fork-a-repo/

## Tracking Upstream Dependencies
Expand Down
Loading
0