fix(memory): correct settings.json precedence order in vi/ja/uk translations (#133)
Mirror the English fix from #131 into the translated docs. The precedence table in 02-memory and the v2.1.119 /config notes still encoded the old, incorrect order (user above project/local). - vi/02-memory: table rows -> local(3) -> project(4) -> user(5, lowest) - ja/02-memory: table rows reordered + /config note policy/local/project - ja/10-cli: /config note chain -> policy -> local -> project -> user - uk/02-memory: table rows reordered Correct order per https://code.claude.com/docs/en/settings: Managed -> CLI args -> Local -> Project -> User (lowest). zh is missing the whole settings section (structural port), tracked separately in #132. Refs #132
This commit is contained in:
@@ -302,9 +302,9 @@ Claude Code の設定(`autoMemoryDirectory`、`claudeMdExcludes` などを含
|
||||
|-------|------|--------|
|
||||
| 1(最高) | 管理ポリシー(システムレベル) | 組織全体への強制 |
|
||||
| 2 | `managed-settings.d/`(v2.1.83+) | モジュール式のポリシードロップイン、アルファベット順にマージ |
|
||||
| 3 | `~/.claude/settings.json` | ユーザー設定 |
|
||||
| 3 | `.claude/settings.local.json` | ローカルオーバーライド(git 無視) |
|
||||
| 4 | `.claude/settings.json` | プロジェクトレベル(git にコミット) |
|
||||
| 5(最低) | `.claude/settings.local.json` | ローカルオーバーライド(git 無視) |
|
||||
| 5(最低) | `~/.claude/settings.json` | ユーザー設定 |
|
||||
|
||||
**プラットフォーム固有の設定(v2.1.51+):**
|
||||
|
||||
@@ -314,7 +314,7 @@ Claude Code の設定(`autoMemoryDirectory`、`claudeMdExcludes` などを含
|
||||
|
||||
これらのプラットフォームネイティブの仕組みは JSON 設定ファイルとともに読み込まれ、同じ優先順位ルールに従う。
|
||||
|
||||
> **注意(v2.1.119)**: `/config` の変更は `~/.claude/settings.json` に永続化されるようになった。`/config` で書かれた値は、上記のプロジェクト/ローカル/ポリシーの優先順位チェーンに参加する — もはやセッション限りではない。インタラクティブな編集には `/config` を、スクリプト化または管理された設定には `settings.json` ファイルの直接編集を使う。
|
||||
> **注意(v2.1.119)**: `/config` の変更は `~/.claude/settings.json` に永続化されるようになった。`/config` で書かれた値は、上記のポリシー/ローカル/プロジェクトの優先順位チェーンに参加する — もはやセッション限りではない。インタラクティブな編集には `/config` を、スクリプト化または管理された設定には `settings.json` ファイルの直接編集を使う。
|
||||
|
||||
### 保持期間とクリーンアップ設定
|
||||
|
||||
|
||||
Reference in New Issue
Block a user