-
Notifications
You must be signed in to change notification settings - Fork 3
/
.php_cs.php
29 lines (26 loc) · 846 Bytes
/
.php_cs.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
<?php
use PhpCsFixer\Config;
$finder = PhpCsFixer\Finder::create()
->in(__DIR__);
return (new Config())
->setRiskyAllowed(true)
->setRules([
'@PSR2' => true,
'@PSR1' => true,
'array_syntax' => ['syntax' => 'short'],
'linebreak_after_opening_tag' => true,
'mb_str_functions' => true,
'no_extra_blank_lines' => true,
'no_php4_constructor' => true,
'no_unreachable_default_argument_value' => true,
'no_unused_imports' => true,
'no_useless_else' => true,
'no_useless_return' => true,
'ordered_imports' => true,
'phpdoc_order' => true,
'semicolon_after_instruction' => true,
'strict_comparison' => true,
'strict_param' => true,
])
->setFinder($finder)
->setCacheFile(__DIR__ . '/.php_cs.cache');