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

28 lines
781 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' => [],
'braces_position' => [
'functions_opening_brace' => 'same_line',
'classes_opening_brace' => 'same_line'],
2020-02-18 00:09:56 -05:00
'concat_space' => ['spacing' => 'one'],
'fully_qualified_strict_types' => false,
2020-02-18 00:09:56 -05:00
'no_superfluous_phpdoc_tags' => false,
'no_unneeded_control_parentheses' => false,
'phpdoc_align' => false,
'single_line_comment_style' => false,
'single_line_comment_spacing' => false,
2020-02-18 00:09:56 -05:00
'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;