mirror of
https://github.com/deployphp/deployer.git
synced 2025-01-16 13:08:17 +01:00
15 lines
406 B
PHP
15 lines
406 B
PHP
<?php
|
|
|
|
$finder = (new PhpCsFixer\Finder())
|
|
->in(__DIR__ . '/src')
|
|
->in(__DIR__ . '/recipe')
|
|
->in(__DIR__ . '/contrib')
|
|
->in(__DIR__ . '/tests');
|
|
|
|
return (new PhpCsFixer\Config())
|
|
->setRules([
|
|
'@PER-CS' => true,
|
|
'trailing_comma_in_multiline' => ['elements' => ['arguments', 'array_destructuring', 'arrays']], // For PHP 7.4 compatibility
|
|
])
|
|
->setFinder($finder);
|