baikal/.php-cs-fixer.dist.php

24 lines
641 B
PHP
Raw Normal View History

<?php
2021-11-25 22:56:04 -05:00
$config = new PhpCsFixer\Config;
$config->getFinder()
->exclude('vendor')
->in(__DIR__);
$config->setRules([
2020-02-18 00:09:56 -05:00
'@PSR2' => true,
'@Symfony' => true,
2021-11-25 22:56:04 -05:00
'binary_operator_spaces' => [],
2020-02-18 00:09:56 -05:00
'braces' => ['position_after_functions_and_oop_constructs' => 'same'],
'concat_space' => ['spacing' => 'one'],
'no_superfluous_phpdoc_tags' => false,
'no_unneeded_control_parentheses' => false,
'phpdoc_align' => false,
'single_line_comment_style' => false,
'single_quote' => false,
2021-11-25 22:56:04 -05:00
'trailing_comma_in_multiline' => true,
2020-02-18 00:09:56 -05:00
'visibility_required' => false,
'yoda_style' => false
]);
return $config;