-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.php-cs-fixer.php
40 lines (33 loc) · 969 Bytes
/
.php-cs-fixer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
declare(strict_types=1);
$finder = PhpCsFixer\Finder::create()
->exclude('log')
->exclude('temp')
->in(__DIR__);
$rules = [
'@Symfony' => true,
'@Symfony:risky' => true,
'@PHP80Migration' => true,
'@PHP80Migration:risky' => true,
// overwrite some Symfony rules
'braces' => ['position_after_functions_and_oop_constructs' => 'same'],
'function_declaration' => ['closure_function_spacing' => 'none'],
'concat_space' => ['spacing' => 'one'],
'phpdoc_align' => false,
'yoda_style' => false,
'non_printable_character' => false,
'phpdoc_no_alias_tag' => false,
// additional rules
'array_syntax' => ['syntax' => 'short'],
'modernize_types_casting' => true,
'ordered_imports' => true,
'phpdoc_add_missing_param_annotation' => ['only_untyped' => false],
'phpdoc_order' => true,
'strict_param' => true,
];
$config = new PhpCsFixer\Config();
return $config
->setRules($rules)
->setIndent("\t")
->setRiskyAllowed(true)
->setFinder($finder);