Skip to content
This repository was archived by the owner on Feb 14, 2026. It is now read-only.

Commit d9305d1

Browse files
committed
Invert logic, make it opt-out
1 parent b80ffad commit d9305d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/FilamentTestsCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
class FilamentTestsCommand extends Command
1919
{
2020
protected $signature = 'make:filament-test
21-
{--should-run-pint-after : Run Pint on generated files after tests}';
21+
{--do-not-run-pint-after : Skip running Pint on generated files}';
2222

2323
protected $description = 'Create a new test for a Filament component';
2424

@@ -85,7 +85,7 @@ protected function runPintOnGeneratedFiles(): void
8585
return;
8686
}
8787

88-
if (! $this->option('should-run-pint-after')) {
88+
if ($this->option('do-not-run-pint-after')) {
8989
return;
9090
}
9191

0 commit comments

Comments
 (0)