Skip to content

Commit e340a12

Browse files
committed
style: update cli.ts and prepareCommitMsg.test.ts
1 parent b538206 commit e340a12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/git/cli.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ import { Repository } from "../api/git";
99

1010
const exec = util.promisify(_exec);
1111

12-
// Ensure Git will show special characters literally without quoting the string and escaping characters.
13-
const QUOTE_PATH = "-c 'core.quotePath=false'"
12+
// Ensure Git will show special characters literally without quoting the string
13+
// and escaping characters.
14+
const QUOTE_PATH = "-c 'core.quotePath=false'";
1415

1516
const DIFF_INDEX_CMD = "diff-index";
1617
const DIFF_INDEX_OPTIONS = [

src/test/prepareCommitMsg.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,6 @@ describe("Prepare commit message", function () {
349349

350350
assert.deepStrictEqual(_msgNamed(lines), expected);
351351
});
352-
353352
});
354353

355354
describe("multiple files with different actions", function () {

0 commit comments

Comments
 (0)