🔥 refactor(githook.ts): remove unused import (#93)

The import statement for the fileURLToPath function from the url module is not used in the file. Therefore, it has been removed to improve code readability and maintainability.
This commit is contained in:
Alex Cáceres Gómez
2023-03-30 08:41:08 +02:00
committed by GitHub
parent e9c66ae168
commit 8d01829a9b
-1
View File
@@ -6,7 +6,6 @@ import { existsSync } from 'fs';
import chalk from 'chalk';
import { intro, outro } from '@clack/prompts';
import { COMMANDS } from '../CommandsEnum.js';
import { fileURLToPath } from 'url';
const HOOK_NAME = 'prepare-commit-msg';
const SYMLINK_URL = `.git/hooks/${HOOK_NAME}`;