Skip to content

Commit f5a8fc9

Browse files
committed
feat(cli): use errorCode 9 #4142
1 parent 39c66fb commit f5a8fc9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

@commitlint/cli/src/cli.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ test('should produce help for empty config', async () => {
107107
const result = cli([], {cwd})('foo: bar');
108108
const output = await result;
109109
expect(output.stdout.trim()).toContain('Please add rules');
110-
expect(result.exitCode).toBe(6);
110+
expect(result.exitCode).toBe(9);
111111
});
112112

113113
test('should produce help for problems', async () => {
@@ -137,7 +137,7 @@ test('should fail for input from stdin without rules', async () => {
137137
const cwd = await gitBootstrap('fixtures/empty');
138138
const result = cli([], {cwd})('foo: bar');
139139
await result;
140-
expect(result.exitCode).toBe(6);
140+
expect(result.exitCode).toBe(9);
141141
});
142142

143143
test('should succeed for input from stdin with rules', async () => {

@commitlint/cli/src/cli.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ async function main(args: MainArgs): Promise<void> {
388388
}
389389
}
390390
if (!report.valid && isRulesEmpty) {
391-
throw new CliError(output, pkg.name, 6);
391+
throw new CliError(output, pkg.name, 9);
392392
}
393393
if (!report.valid) {
394394
throw new CliError(output, pkg.name);

0 commit comments

Comments
 (0)