We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e37b9f4 commit 58fea3fCopy full SHA for 58fea3f
json-check.php
@@ -15,7 +15,7 @@ function jsonStyleCheck(string $dir)
15
$invalidFiles = [];
16
$files = scandir($dir);
17
foreach ($files as $file) {
18
- if ($file != '.' && $file != '..') {
+ if ($file != '.' && $file != '..' && $dir != './libs/vendor') {
19
if (is_dir($dir . '/' . $file)) {
20
$invalidFiles = array_merge($invalidFiles, jsonStyleCheck($dir . '/' . $file));
21
} else {
0 commit comments