TDoG-Skin/vendor/blessing/rejection/.php_cs.dist
2024-08-17 19:13:54 +08:00

20 lines
418 B
PHP
Executable File

<?php
$finder = PhpCsFixer\Finder::create()
->in('src')
->in('tests')
;
return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'align_multiline_comment' => true,
'array_syntax' => ['syntax' => 'short'],
'increment_style' => ['style' => 'post'],
'list_syntax' => ['syntax' => 'short'],
'yoda_style' => false,
])
->setFinder($finder)
;