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

BiomeのnoDuplicateObjectKeysはJSとJson両方見てくれる #77

Merged
merged 2 commits into from
Dec 23, 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
56 changes: 56 additions & 0 deletions app/routes/posts/biome-no-duplicate-object-keys.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
title: "BiomeのnoDuplicateObjectKeysはJSとJson両方見てくれる"
description: "no-duplicate-object-keysについて"
date: "2024/12/24"
updatedAt: "2024/12/24"
path: "biome-no-duplicate-object-keys"
published: true
---

[2024年 ユウトの一人アドベントカレンダー](https://adventar.org/calendars/9980)の24日目の記事です。

## Intro

[no-duplicate-object-keys](https://biomejs.dev/linter/rules/no-duplicate-object-keys/)について。

## Details

BiomeのRecommend Ruleを眺めていたところ、`noDuplicateObjectKeys`の項目が二つ存在していることに気づきました。

<img width="851" alt="image" src="/static/biome-no-duplicate-object-keys/biome-no-duplicate-object-keys.png" />

これを見た瞬間は、記載ミスかなと思い、修正PRを出そうとしていました。

ちなみにbiomeのドキュメントサイトは本体ではなく、[biomejs/website](https://github.com/biomejs/website)というリポジトリになっています。

そして面白いのが、ルールに関しては実際のコードベースから自動生成されて作られているようです。

```
# Don't modify this file manually. This file is auto generated from source,
and you will lose your changes next time the website is built.
# Head to the `biomejs/biome` repository, and modify the source code in there.
```

さて、本題に戻ると、noDuplicateObjectKeysが二つ存在するのは**仕様**です。
これは、JSとJsonの両方でduplicate keyを見てくれるからだそうです。

```js
// invalid
const obj = {
a: 1,
a: 2,
}
```

```json
// invalid
{
"title": "New title",
"title": "Second title"
}
```

## まとめ

初見で見るとミスだと思ってしまう可能性結構高そうな内容でした。
ルール自体はめっちゃ便利なので好きです。
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading