Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nhedger committed Jul 21, 2024
1 parent 61d9c8d commit 72edd78
Show file tree
Hide file tree
Showing 12 changed files with 2,791 additions and 12 deletions.
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
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
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"recommendations": ["oven.bun-vscode"]
"recommendations": []
}
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"${workspaceFolder}/test/fixtures/workspace/test.code-workspace"
],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "bun: dev",
"preLaunchTask": "npm: dev",
"sourceMapRenames": true
},
{
Expand All @@ -26,7 +26,7 @@
"${workspaceFolder}/test/fixtures/no-workspace/test.js"
],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "bun: dev",
"preLaunchTask": "npm: dev",
"sourceMapRenames": true
}
]
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "2.0.0",
"tasks": [
{
"type": "bun",
"type": "npm",
"script": "dev",
"isBackground": true,
"problemMatcher": [
Expand Down
33 changes: 33 additions & 0 deletions CONTRIBUTING.md
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/
1 change: 0 additions & 1 deletion NOTES.md

This file was deleted.

Binary file removed bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@
"icon": "resources/icons/biome.png",
"keywords": ["formatter", "linter"],
"license": "MIT OR Apache-2.0",
"packageManager": "bun@1.1.9",
"publisher": "biomejs",
"readme": "https://github.com/biomejs/biome-vscode#readme",
"scripts": {
Expand All @@ -146,5 +145,6 @@
"undici": "^5",
"vscode-languageclient": "^8",
"vscode-uri": "^3.0.8"
}
},
"packageManager": "pnpm@9.5.0"
}
Loading

0 comments on commit 72edd78

Please sign in to comment.