test_lgq/niucloud/vendor/yansongda/supports/.php-cs-fixer.php
2024-01-24 17:36:08 +08:00

25 lines
641 B
PHP

<?php
$finder = PhpCsFixer\Finder::create()
->exclude('tests')
->exclude('vendor')
->in(__DIR__);
return (new PhpCsFixer\Config())
->setUsingCache(false)
->setRules([
'@Symfony' => true,
'class_attributes_separation' => true,
'ordered_class_elements' => true,
'ordered_imports' => ['sort_algorithm' => 'alpha'],
'line_ending' => true,
'single_quote' => true,
'array_syntax' => ['syntax' => 'short'],
'general_phpdoc_annotation_remove' => [
'annotations' => [
'author'
],
],
])
->setFinder($finder);