From 9081107e73c634e3330c46fd94f884c218a318e0 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 17 Sep 2025 08:12:05 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/libs/json-path-to-position.test.ts | 2 +- src/libs/json-path-to-position.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/json-path-to-position.test.ts b/src/libs/json-path-to-position.test.ts index fe94893a..9f6df303 100644 --- a/src/libs/json-path-to-position.test.ts +++ b/src/libs/json-path-to-position.test.ts @@ -64,4 +64,4 @@ describe("json-path-to-position", () => { const node = jsonPathToPosition(["id"], ast); expect(node).toBe(undefined); }); -}); \ No newline at end of file +}); diff --git a/src/libs/json-path-to-position.ts b/src/libs/json-path-to-position.ts index 14a81d13..3c8ec08d 100644 --- a/src/libs/json-path-to-position.ts +++ b/src/libs/json-path-to-position.ts @@ -22,4 +22,4 @@ export function jsonPathToPosition(path: string[], node: ValueNode | PropertyNod ); }) as PropertyNode | undefined; return jsonPathToPosition(path.slice(1), newNode?.value); -} \ No newline at end of file +}