From 13a9bbb366fd3daee442430c8677d0d8b3f8d29c Mon Sep 17 00:00:00 2001 From: Kazuki Yamada Date: Sun, 31 Aug 2025 00:10:24 +0900 Subject: [PATCH] style(core): Add missing newline at end of fileManipulate.ts Fixed formatting issue identified by Biome linter to ensure consistent code style across the project. --- src/core/file/fileManipulate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/file/fileManipulate.ts b/src/core/file/fileManipulate.ts index a1831782..ee3ec92a 100644 --- a/src/core/file/fileManipulate.ts +++ b/src/core/file/fileManipulate.ts @@ -367,4 +367,4 @@ const manipulators: Record = { export const getFileManipulator = (filePath: string): FileManipulator | null => { const ext = path.extname(filePath); return manipulators[ext] || null; -}; \ No newline at end of file +};