Migrate from ESLint + Prettier to Biome#1142
Conversation
This commit replaces ESLint and Prettier with Biome in the `javascript` directory. Biome is configured to match the existing style guidelines: - Single quotes - No space around imports - Arrow parentheses as needed - 2-space indentation Key changes: - Added `@biomejs/biome` to `devDependencies`. - Removed ESLint and Prettier related packages and config files. - Added `biome.json` with requested style settings. - Updated `package.json` scripts to use `biome check`. - Renamed reserved variable `package` to `packageJson` in `scripts/check-cli-version.js` to comply with Biome's strict mode check. - Removed obsolete `/* eslint-disable */` comments. - Formatted source code using Biome. All tests passed after migration. Co-authored-by: tushuhei <734905+tushuhei@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
Migrated the JavaScript package from ESLint and Prettier to Biome. Configured Biome to match the existing style and verified with tests.
The main purpose of this change is to reduce the number of dev dependencies.
PR created automatically by Jules for task 2227659789666531147 started by @tushuhei