mirror of
https://github.com/bs-community/blessing-skin-plugins.git
synced 2025-01-09 04:07:51 +08:00
15 lines
406 B
PHP
15 lines
406 B
PHP
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()->in('plugins');
|
|
|
|
$config = new PhpCsFixer\Config();
|
|
return $config->setRules([
|
|
'@Symfony' => true,
|
|
'align_multiline_comment' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
'increment_style' => ['style' => 'post'],
|
|
'list_syntax' => ['syntax' => 'short'],
|
|
'yoda_style' => false,
|
|
])
|
|
->setFinder($finder);
|