-
Notifications
You must be signed in to change notification settings - Fork 61
/
.php_cs
51 lines (39 loc) · 1.3 KB
/
.php_cs
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
$finder = Symfony\Component\Finder\Finder::create()
->notPath('vendor')
->notPath('bootstrap')
->notPath('storage')
->in(__DIR__)
->name('*.php')
->notName('*.blade.php');
return PhpCsFixer\Config::create()
->setRules([
'@PSR2' => true,
'array_syntax' => ['syntax' => 'short'],
'array_indentation' => true,
'trailing_comma_in_multiline_array' => true,
'ordered_imports' => ['sortAlgorithm' => 'alpha'],
'no_unused_imports' => true,
'unary_operator_spaces' => true,
'binary_operator_spaces' => true,
'cast_spaces' => true,
'not_operator_with_successor_space' => true,
'phpdoc_trim' => true,
'phpdoc_scalar' => true,
'phpdoc_single_line_var_spacing' => true,
'phpdoc_var_without_name' => true,
'no_empty_phpdoc' => true,
'no_superfluous_phpdoc_tags' => true,
'class_attributes_separation' => [
'elements' => [
'method',
],
],
'visibility_required' => ['property', 'method'],
'void_return' => true,
'protected_to_private' => true,
'explicit_string_variable' => true,
'single_quote' => true,
'declare_strict_types' => true,
])
->setFinder($finder);