-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
2,791 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# These owners will be the default owners for everything in the repo. Unless a | ||
# later match takes precedence, these will will be requested for review when | ||
# someone opens a pull request. | ||
* @nhedger @biomejs/core-contributors @biomejs/maintainers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"recommendations": ["oven.bun-vscode"] | ||
"recommendations": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Contribution guidelines | ||
|
||
Thank you for considering contributing to the Visual Studio Code extension for | ||
Biome! This document outlines somes of the conventions on development workflow, | ||
testing protocol, and other resources to make it easier to get your contribution | ||
accepted. | ||
|
||
As is usually customary when contributing to an open-source project, please | ||
create an issue or a discussion if you plan to make substantial changes. This | ||
gives us, the maintainers, a chance to provide early feedback and ensures that | ||
your contribution is in line with the project's goals. | ||
|
||
## Project setup | ||
|
||
1. Fork the repository and clone it to your local machine. For simplicity, you | ||
can use the [GitHub CLI] to do this in one command. | ||
```shell | ||
gh repo fork @biomejs/biome-vscode --clone | ||
``` | ||
|
||
2. Install the dependencies. We use [PNPM] to manage the dependencies of the | ||
project. You should install it using corepack to ensure that you have the same | ||
version as the one used in the project. | ||
```shell | ||
# Enable corepack | ||
corepack enable | ||
|
||
# Install dependencies | ||
pnpm install | ||
``` | ||
|
||
[GitHub CLI]: https://cli.github.com/ | ||
[PNPM]: https://pnpm.io/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.