Skip to content

Commit f25a986

Browse files
authored
Allow quiet mode when parsing from stdin. (#87)
1 parent cf71eb9 commit f25a986

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/jsonlint

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ if (!empty($files)) {
5858
} else {
5959
//stdin linting
6060
if ($contents = file_get_contents('php://stdin')) {
61-
lint($contents);
61+
lint($contents, $quiet);
6262
} else {
6363
fwrite(STDERR, 'No file name or json input given' . PHP_EOL);
6464
exit(1);

0 commit comments

Comments
 (0)