-
Notifications
You must be signed in to change notification settings - Fork 118
/
.php-cs-fixer.dist.php
55 lines (51 loc) · 1.39 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
52
53
54
55
<?php
declare(strict_types=1);
$finder = PhpCsFixer\Finder::create()
->exclude('vendor')
->exclude('node_modules')
->exclude('bower_components')
->exclude('public')
->exclude('bootstrap')
->exclude('resources')
->exclude('storage')
->in(__DIR__)
->name('*.php')
->notName('*.blade.php');
$config = new PhpCsFixer\Config();
return $config
->setRules([
'@PSR12' => true,
'array_syntax' => ['syntax' => 'short'],
'ordered_imports' => [
'imports_order' => [
'class',
'function',
'const'
],
'sort_algorithm' => 'alpha'
],
'no_unused_imports' => true,
'no_empty_statement' => true,
'no_useless_return' => true,
'not_operator_with_successor_space' => true,
'explicit_string_variable' => true,
'simple_to_complex_string_variable' => true,
'array_indentation' => true,
'blank_line_before_statement' => [
'statements' => [
'case',
'default',
'declare',
'do',
'goto',
'if',
'include',
'include_once',
'require',
'require_once',
'switch',
'try',
]
],
])
->setFinder($finder);