Skip to content

Commit

Permalink
style: update cli.ts and prepareCommitMsg.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelCurrin committed Aug 22, 2024
1 parent b538206 commit e340a12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/git/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ import { Repository } from "../api/git";

const exec = util.promisify(_exec);

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

const DIFF_INDEX_CMD = "diff-index";
const DIFF_INDEX_OPTIONS = [
Expand Down
1 change: 0 additions & 1 deletion src/test/prepareCommitMsg.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,6 @@ describe("Prepare commit message", function () {

assert.deepStrictEqual(_msgNamed(lines), expected);
});

});

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

0 comments on commit e340a12

Please sign in to comment.