-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy path.php_cs
29 lines (27 loc) · 805 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
<?php
return PhpCsFixer\Config::create()
->setRiskyAllowed(true)
->setRules([
'@PSR2' => true,
'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,
])
->setFinder(
PhpCsFixer\Finder::create()
->in('src')
->in('tests')
->exclude([
'vendor',
'node_modules',
])
->notName('*.md')
->notName('*.xml')
->notName('*.yml')
->notName('*.lock')
->notName('_ide_helper.php')
->notName('_ide_helper_models.php')
->notName('.phpstorm.meta.php')
);