Skip to content

Commit

Permalink
🗑️ chore: fix thisss
Browse files Browse the repository at this point in the history
  • Loading branch information
Rettend committed Nov 11, 2023
1 parent 9525bc0 commit 869460d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ export default defineConfig({
],
}

vscodeSettingsFile = path.join(process.cwd(), '.vscode/settings.json')
hooksDir = path.join(process.cwd(), '.git/hooks')
hookFile = path.join(process.cwd(), '.git/hooks/prepare-commit-msg')
gitCommitFile = path.join(process.cwd(), '.git/COMMIT_EDITMSG')
vscodeSettingsFile = path.join(process.env.INIT_CWD || process.cwd(), '.vscode/settings.json')
hooksDir = path.join(process.env.INIT_CWD || process.cwd(), '.git/hooks')
hookFile = path.join(process.env.INIT_CWD || process.cwd(), '.git/hooks/prepare-commit-msg')
gitCommitFile = path.join(process.env.INIT_CWD || process.cwd(), '.git/COMMIT_EDITMSG')
}

export function defineConfig(config: Partial<Config>): Config {
Expand Down

0 comments on commit 869460d

Please sign in to comment.