Skip to content

Commit 7ef9c3b

Browse files
Fixed parallel running
1 parent 700f7ba commit 7ef9c3b

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ codestyle --test
6363
# Fix code-style
6464
codestyle
6565

66+
# Also you can run parallel styling
67+
codestyle --parallel
68+
6669
# Update `.editorconfig`
6770
codestyle editorconfig
6871

app/Commands/DefaultCommand.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,8 @@ protected function configure(): void
104104
new InputOption(
105105
'parallel',
106106
'p',
107-
InputOption::VALUE_REQUIRED,
108-
'Runs the linter in parallel (Experimental)',
109-
true
107+
InputOption::VALUE_NONE,
108+
'Runs the linter in parallel (Experimental)'
110109
),
111110
]
112111
);

0 commit comments

Comments
 (0)