Skip to content

Commit 923f37f

Browse files
committed
feat: Exit the process with 0 (success) if no files were found and --succeed-with-no-files was requested
Fixes #20.
1 parent 4387c4b commit 923f37f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ Usage: `jsonlint [options] [--] [<file, directory, pattern> ...]`
160160
--enforce-double-quotes surrounds all strings with double quotes
161161
--enforce-single-quotes surrounds all strings with single quotes
162162
--trim-trailing-commas omit trailing commas from objects and arrays
163+
--succeed-with-no-files succeed (exit code 0) if no files were found
163164
-v, --version output the version number
164165
-h, --help display help for command
165166

lib/cli.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ Options:
5757
--enforce-double-quotes surrounds all strings with double quotes
5858
--enforce-single-quotes surrounds all strings with single quotes
5959
--trim-trailing-commas omit trailing commas from objects and arrays
60+
--succeed-with-no-files succeed (exit code 0) if no files were found
6061
-v, --version output the version number
6162
-h, --help display help for command
6263
@@ -208,6 +209,9 @@ for (let i = 2, l = argv.length; i < l; ++i) {
208209
case 'trim-trailing-commas':
209210
params.trimTrailingCommas = flag
210211
return
212+
case 'succeed-with-no-files':
213+
params.succeedWithNoFiles = flag
214+
return
211215
case 'v': case 'version':
212216
console.log(require('../package.json').version)
213217
process.exit(0)
@@ -532,7 +536,7 @@ function processPatterns (patterns) {
532536
const files = sync(patterns, { onlyFiles: true })
533537
if (!files.length) {
534538
console.error('no files found')
535-
process.exit(1)
539+
process.exit(params.succeedWithNoFiles ? 0 : 1)
536540
}
537541
for (const file of files) {
538542
try {

0 commit comments

Comments
 (0)