-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.php_cs
36 lines (36 loc) · 902 Bytes
/
.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
<?php
/**
* Config for PHP-CS-Fixer ver2
*/
$rules = [
'@PSR2' => true,
// addtional rules
'array_syntax' => ['syntax' => 'short'],
'no_multiline_whitespace_before_semicolons' => true,
'no_short_echo_tag' => true,
'no_unused_imports' => true,
'not_operator_with_successor_space' => true,
];
$excludes = [
// add exclude project directory
'vendor',
'node_modules',
'storage',
'public',
'docker',
'bootstrap',
'resources'
];
return PhpCsFixer\Config::create()
->setRules($rules)
->setFinder(
PhpCsFixer\Finder::create()
->exclude($excludes)
->notName('README.md')
->notName('_ide_helper.php')
->notName('_ide_helper_models.php')
->notName('.phpstorm.meta.php')
->notName('server.php')
->notName('*.xml')
->notName('*.yml')
);