Skip to content

Commit 9b35565

Browse files
committed
Remove extraneous output, refs #49
1 parent fe95ce0 commit 9b35565

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

bin/jsonlint

-3
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,13 @@ if (isset($_SERVER['argc']) && $_SERVER['argc'] > 1) {
4848
if (!empty($files)) {
4949
// file linting
5050
$exitCode = 0;
51-
echo 'Checking ' . count($files) . " file" . (count($files) > 1 ? 's' : '') . PHP_EOL;
5251
foreach ($files as $file) {
53-
5452
$result = lintFile($file, $quiet);
5553
if ($result === false) {
5654
$exitCode = 1;
5755
}
5856
}
5957
exit($exitCode);
60-
6158
} else {
6259
//stdin linting
6360
if ($contents = file_get_contents('php://stdin')) {

0 commit comments

Comments
 (0)