rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    match /comments/{commentId} {
      allow read: if true;     // ✅ 誰でもコメントを取得（表示）できる
      allow write: if false;   // ❌ 書き込み（保存・削除・編集）は禁止
    }
  }
}
