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.
This commit is contained in:
Kazuki Yamada
2025-08-31 00:10:24 +09:00
parent 23a0f00005
commit 13a9bbb366
+1 -1
View File
@@ -367,4 +367,4 @@ const manipulators: Record<string, FileManipulator> = {
export const getFileManipulator = (filePath: string): FileManipulator | null => {
const ext = path.extname(filePath);
return manipulators[ext] || null;
};
};