Update to latest version #12

Merged
N0tAI merged 3 commits from main into dev 2026-04-03 04:21:32 +00:00
N0tAI commented 2026-04-03 04:20:50 +00:00 (Migrated from github.com)
No description provided.
gemini-code-assist[bot] (Migrated from github.com) reviewed 2026-04-03 04:23:18 +00:00
gemini-code-assist[bot] (Migrated from github.com) left a comment

Code Review

This pull request introduces Biome as the project's linter and formatter, adding a biome.json configuration file and updating package.json with new scripts. The changes involve a widespread transition from spaces to tabs for indentation across configuration and source files, along with minor dependency updates. A review comment suggests simplifying an arrow function in src/components/keyword.astro to enhance readability.

## Code Review This pull request introduces Biome as the project's linter and formatter, adding a biome.json configuration file and updating package.json with new scripts. The changes involve a widespread transition from spaces to tabs for indentation across configuration and source files, along with minor dependency updates. A review comment suggests simplifying an arrow function in src/components/keyword.astro to enhance readability.
gemini-code-assist[bot] (Migrated from github.com) commented 2026-04-03 04:23:18 +00:00

medium

The arrow function inside the forEach loop is unnecessarily wrapped in a block with a single statement. This can be simplified for better readability.

keywords.forEach((keyword) => clampPopupPosition(keyword));
![medium](https://www.gstatic.com/codereviewagent/medium-priority.svg) The arrow function inside the forEach loop is unnecessarily wrapped in a block with a single statement. This can be simplified for better readability. ``` keywords.forEach((keyword) => clampPopupPosition(keyword)); ```
Sign in to join this conversation.
No description provided.