Skip to content
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

docs: fix pre-commit sample version v0.1.0 #1612

Merged
merged 1 commit into from
Jan 20, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion website/src/content/docs/ja/recipes/git-hooks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Biome は [biomejs/pre-commit](https://github.com/biomejs/pre-commit) リポジ
```yaml title=".pre-commit-config.yaml"
repos:
- repo: https://github.com/biomejs/pre-commit
rev: "0.1.0" # タグやハッシュ値を指定してください
rev: "v0.1.0" # タグやハッシュ値を指定してください
hooks:
- id: biome-check
additional_dependencies: ["@biomejs/[email protected]"]
Expand Down
2 changes: 1 addition & 1 deletion website/src/content/docs/pt-br/recipes/git-hooks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Se você quiser usar o hook `biome-check`, adicione a seguinte configuração na
```yaml title=".pre-commit-config.yaml"
repos:
- repo: https://github.com/biomejs/pre-commit
rev: "0.1.0" # Use the sha / tag you want to point at
rev: "v0.1.0" # Use the sha / tag you want to point at
hooks:
- id: biome-check
additional_dependencies: ["@biomejs/[email protected]"]
Expand Down
2 changes: 1 addition & 1 deletion website/src/content/docs/recipes/git-hooks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ if you want to use the `biome-check` hook, add the following pre-commit configur
```yaml title=".pre-commit-config.yaml"
repos:
- repo: https://github.com/biomejs/pre-commit
rev: "0.1.0" # Use the sha / tag you want to point at
rev: "v0.1.0" # Use the sha / tag you want to point at
hooks:
- id: biome-check
additional_dependencies: ["@biomejs/[email protected]"]
Expand Down
2 changes: 1 addition & 1 deletion website/src/content/docs/zh-cn/recipes/git-hooks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Biome 通过 [biomejs/pre-commit](https://github.com/biomejs/pre-commit) 仓库
```yaml title=".pre-commit-config.yaml"
repos:
- repo: https://github.com/biomejs/pre-commit
rev: "0.1.0" # Use the sha / tag you want to point at
rev: "v0.1.0" # Use the sha / tag you want to point at
hooks:
- id: biome-check
additional_dependencies: ["@biomejs/[email protected]"]
Expand Down