plugin-flow-builder: migrate eslint and prettier to biome#3163
Merged
Iru89 merged 19 commits intomaster-ltsfrom Feb 9, 2026
Merged
plugin-flow-builder: migrate eslint and prettier to biome#3163Iru89 merged 19 commits intomaster-ltsfrom
Iru89 merged 19 commits intomaster-ltsfrom
Conversation
|
Codex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits. |
vanbasten17
approved these changes
Feb 9, 2026
Base automatically changed from
replace-eslint-and-prettier-for-biome-5
to
master-lts
February 9, 2026 09:32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Migrates
@botonic/plugin-flow-builderfrom ESLint + Prettier to Biome v2 as part of the ongoing monorepo linting migration (Phase 1, step 6/6).lint,lint:check,format) and removedeslintConfigfrompackage.jsonsrc/andtests/usingbiome check --write --unsafebotonic-plugin-flow-builderin the Biome pattern and removed the ESLint hook.prettierignoreand CI workflow (LINT_COMMAND: npm run lint:check)Changes breakdown
Configuration files:
packages/botonic-plugin-flow-builder/package.json— Newlint,lint:check,formatscripts using Biome; removedeslintConfigsection.pre-commit-config.yaml— Addedbotonic-plugin-flow-builderto Biome hook pattern; removed dedicated ESLint hook.prettierignore— Addedpackages/botonic-plugin-flow-builder/.github/workflows/botonic-plugin-flow-builder-tests.yml— AddedLINT_COMMAND: npm run lint:checkSource code (auto-fixed by Biome):
import typewhere only used as types (e.g.,import { FlowContent }→import type { FlowContent })import React from 'react'in 3 files)_prefix (e.g.,catch (error)→catch (_error))ifstatements with block statementsTest files:
@ts-expect-errordirectives that became unused afterimport typeconversions resolved the underlying type mismatchesRemaining warnings (acceptable)
These are warnings only and do not block
lint:check:noExplicitAny— Existinganytypes in the codebase (37 warnings)noUselessFragments— Intentional<></>empty returns in JSX (9 infos)noNonNullAssertion— Existing!assertions