-
Notifications
You must be signed in to change notification settings - Fork 7
/
.php-cs-fixer.dist.php
51 lines (48 loc) · 1.42 KB
/
.php-cs-fixer.dist.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
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* How to use:
*
* $ php-cs-fixer fix --config-file=.php_cs
*
* Documentation: https://github.com/FriendsOfPHP/PHP-CS-Fixer
*/
$finder = PhpCsFixer\Finder::create()
->in(__DIR__ . '/src')
;
$config = new PhpCsFixer\Config();
return $config->setRules([
'@PSR2' => true,
'binary_operator_spaces' => [
'operators' => [
'=' => 'align_single_space_minimal',
'===' => 'align_single_space_minimal',
'=>' => 'align_single_space_minimal',
],
],
'concat_space' => [
'spacing' => 'one'
],
'no_empty_statement' => true,
'include' => true,
'ordered_imports' => true,
'phpdoc_indent' => true,
'phpdoc_align' => true,
'phpdoc_scalar' => true,
'phpdoc_trim' => true,
'no_extra_blank_lines' => ['tokens' =>
['break', 'case', 'continue', 'curly_brace_block',
'default', 'extra', 'parenthesis_brace_block', 'return',
'square_brace_block', 'switch', 'throw', 'use', 'use_trait']
],
'array_syntax' => [
'syntax' => 'short'
],
'cast_spaces' => true,
'ternary_operator_spaces' => true,
'trailing_comma_in_multiline' => true,
'no_unused_imports' => true,
'no_superfluous_phpdoc_tags' => true,
])
->setFinder($finder)
->setUsingCache(true)
;