aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/linters/src/Runner.php
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/linters/src/Runner.php')
-rw-r--r--scripts/linters/src/Runner.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/scripts/linters/src/Runner.php b/scripts/linters/src/Runner.php
new file mode 100644
index 00000000..ae2d84ed
--- /dev/null
+++ b/scripts/linters/src/Runner.php
@@ -0,0 +1,39 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Shirabe\Lint;
+
+final class Runner
+{
+ /** @param list<array{0: Linter, 1: list<string>}> $linters */
+ public function __construct(
+ private readonly string $rootDir,
+ private readonly array $linters,
+ ) {
+ }
+
+ public function run(): bool
+ {
+ $allPassed = true;
+
+ foreach ($this->linters as [$linter, $excludes]) {
+ echo "===== {$linter->name()} =====\n";
+
+ $errors = $linter->check($this->rootDir, $excludes);
+ if ($errors === []) {
+ echo "Passed.\n";
+ } else {
+ echo $linter->failureIntro(), "\n";
+ foreach ($errors as $error) {
+ echo " {$error}\n";
+ }
+ $allPassed = false;
+ }
+
+ echo "\n";
+ }
+
+ return $allPassed;
+ }
+}