[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot]
2025-09-17 08:12:05 +00:00
parent bd0f9404cf
commit 9081107e73
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -64,4 +64,4 @@ describe("json-path-to-position", () => {
const node = jsonPathToPosition(["id"], ast);
expect(node).toBe(undefined);
});
});
});
+1 -1
View File
@@ -22,4 +22,4 @@ export function jsonPathToPosition(path: string[], node: ValueNode | PropertyNod
);
}) as PropertyNode | undefined;
return jsonPathToPosition(path.slice(1), newNode?.value);
}
}