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(website): update CODEOWNERS and broken links #1078

Merged
merged 2 commits into from
Dec 6, 2023
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
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
/website/src/content/docs/ja/ @biomejs/japanese-translation-reviewers
/website/.textlintrc.json @biomejs/japanese-translation-reviewers
/website/prh.yml @biomejs/japanese-translation-reviewers
/.github/workflows/ja-translation.yaml @biomejs/japanese-translation-reviewers
36 changes: 18 additions & 18 deletions website/src/content/docs/ja/analyzer/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Analyzer
description: BiomeのAnalyzerが提供する機能
---

BiomeのAnalyzerは、ユーザーが利用できる次の一連の機能を提供します。
Biomeのanalyzerは、ユーザーが利用できる次の一連の機能を提供します。

## Import文のソート

Expand All @@ -29,7 +29,7 @@ import文は、"距離" によってソートされます。ユーザーから "
4. URLを介してインポートされたモジュール。
5. ライブラリからインポートされたモジュール。
6. 絶対インポート (absolute import) を使用してインポートされたモジュール
7. `#`の接頭辞が付いた名前からインポートされたモジュール。これは、[Nodeのサブパスインポート]((https://nodejs.org/api/packages.html#subpath-imports))を使用する場合に適用されます。
7. `#`の接頭辞が付いた名前からインポートされたモジュール。これは、[Nodeのサブパスインポート](https://nodejs.org/api/packages.html#subpath-imports)を使用する場合に適用されます。
8. 相対インポート (relative import) を使用してインポートされたモジュール。
9. 前述の基準で識別できなかったモジュール。

Expand All @@ -53,21 +53,21 @@ import React from "react";
次のようにソートされます。

```ts
import { expect } from "bun:test";
import assert from "node:assert";
import { mock, test } from "node:test";
import express from "npm:express";
import { VERSION } from "https://deno.land/std/version.ts";
import React from "react";
import { secret } from "/absolute/path";
import { internal } from "#internal";
import aunt from "../aunt";
import uncle from "../uncle";
import sibling from "./sibling";
import imageUrl from "url:./image.png";
import { expect } from "bun:test";
import assert from "node:assert";
import { mock, test } from "node:test";
import express from "npm:express";
import { VERSION } from "https://deno.land/std/version.ts";
import React from "react";
import { secret } from "/absolute/path";
import { internal } from "#internal";
import aunt from "../aunt";
import uncle from "../uncle";
import sibling from "./sibling";
import imageUrl from "url:./image.png";
```

ソートを適用する方法は、[CLI](#CLIを使用した場合)または[VSCode extension](#VS-Code拡張機能を使用した場合)の2つあります。
ソートを適用する方法は、[CLIを使用した場合](#cliを使用した場合)または[VS Code拡張機能を使用した場合](#vs-code拡張機能を使用した場合)の2つあります。

### グループインポート

Expand Down Expand Up @@ -127,8 +127,8 @@ BiomeのVS Code拡張機能は、_Organize Imports_ コードアクションに

```json
{
"editor.codeActionsOnSave":{
"source.organizeImports.biome": true
}
"editor.codeActionsOnSave": {
"source.organizeImports.biome": true
}
}
```