mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 02:58:43 +02:00
N°8796 - Parallelize processing to reduce local env. delay
This commit is contained in:
@@ -22,9 +22,11 @@ $finder = PhpCsFixer\Finder::create()
|
|||||||
;
|
;
|
||||||
|
|
||||||
$config = new PhpCsFixer\Config();
|
$config = new PhpCsFixer\Config();
|
||||||
return $config->setRiskyAllowed(true)
|
return $config
|
||||||
|
->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect())
|
||||||
|
->setRiskyAllowed(true)
|
||||||
->setRules([
|
->setRules([
|
||||||
'@PSR12' => true,
|
'@PSR12' => true,
|
||||||
'indentation_type' => true,
|
'indentation_type' => true,
|
||||||
'no_extra_blank_lines' => true,
|
'no_extra_blank_lines' => true,
|
||||||
'array_syntax' => ['syntax' => 'short'],
|
'array_syntax' => ['syntax' => 'short'],
|
||||||
|
|||||||
Reference in New Issue
Block a user