Skip to content

Commit

Permalink
πŸ› fix: big yikes bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Rettend committed Jan 21, 2024
1 parent 8e9dbd9 commit 5894f21
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,11 @@ export default defineConfig({
vscodeSettingsFile = path.join(this.cwd, '.vscode/settings.json')
gitCommitFile = path.join(this.cwd, '.git/COMMIT_EDITMSG')
hooksDir = path.join(this.cwd, '.git/hooks')
hookFile = path.join(this.cwd, this.hooksDir, 'prepare-commit-msg')
hookFile = path.join(this.cwd, '.git/hooks/prepare-commit-msg')
entryFile = path.join(globalThis.__eemoji_pkg__.entryDir, 'hook.sh')
}


Check failure on line 96 in src/config.ts

View workflow job for this annotation

GitHub Actions / lint

More than 1 blank line not allowed
export function defineConfig(config: Partial<Config>): Config {
const defaultConfig = new ConfigObject().defaultConfig

Expand Down

0 comments on commit 5894f21

Please sign in to comment.