ci: enforce code formatting checks for backend and frontend (#1536)

This commit is contained in:
greatmengqi
2026-03-29 15:34:38 +08:00
committed by GitHub
parent 06a623f9c8
commit 084dc7e748
105 changed files with 8253 additions and 7369 deletions
+5 -5
View File
@@ -29,7 +29,7 @@ const Temporary = ({
return (
<BaseEdge
className="stroke-1 stroke-ring"
className="stroke-ring stroke-1"
id={id}
path={edgePath}
style={{
@@ -41,13 +41,13 @@ const Temporary = ({
const getHandleCoordsByPosition = (
node: InternalNode<Node>,
handlePosition: Position
handlePosition: Position,
) => {
// Choose the handle type based on position - Left is for target, Right is for source
const handleType = handlePosition === Position.Left ? "target" : "source";
const handle = node.internals.handleBounds?.[handleType]?.find(
(h) => h.position === handlePosition
(h) => h.position === handlePosition,
);
if (!handle) {
@@ -85,7 +85,7 @@ const getHandleCoordsByPosition = (
const getEdgeParams = (
source: InternalNode<Node>,
target: InternalNode<Node>
target: InternalNode<Node>,
) => {
const sourcePos = Position.Right;
const [sx, sy] = getHandleCoordsByPosition(source, sourcePos);
@@ -112,7 +112,7 @@ const Animated = ({ id, source, target, markerEnd, style }: EdgeProps) => {
const { sx, sy, tx, ty, sourcePos, targetPos } = getEdgeParams(
sourceNode,
targetNode
targetNode,
);
const [edgePath] = getBezierPath({