forked from fossar/selfoss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php-cs-fixer.php
40 lines (36 loc) · 1.17 KB
/
.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
$finder = PhpCsFixer\Finder::create()
->exclude('assets')
->exclude('utils')
->in(__DIR__)
->name('*.phtml');
$rules = [
'@Symfony' => true,
// why would anyone put braces on different line
'braces' => ['position_after_functions_and_oop_constructs' => 'same'],
'function_declaration' => ['closure_function_spacing' => 'none'],
// overwrite some Symfony rules
'concat_space' => ['spacing' => 'one'],
'phpdoc_align' => false,
'phpdoc_no_empty_return' => false,
'phpdoc_summary' => false,
'trailing_comma_in_multiline' => false,
'yoda_style' => false,
'semicolon_after_instruction' => false,
// additional rules
'array_syntax' => ['syntax' => 'short'],
'dir_constant' => true,
'echo_tag_syntax' => ['format' => 'short'],
'modernize_types_casting' => true,
'no_alias_functions' => true,
'ordered_imports' => true,
'phpdoc_add_missing_param_annotation' => ['only_untyped' => false],
'phpdoc_order' => true,
'psr_autoloading' => true,
'strict_param' => true,
];
$config = new PhpCsFixer\Config();
return $config
->setRules($rules)
->setRiskyAllowed(true)
->setFinder($finder);