forked from alcohol/iso3166
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php_cs.dist
41 lines (35 loc) · 1.01 KB
/
.php_cs.dist
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
<?php
$header = <<<EOF
(c) Rob Bast <[email protected]>
For the full copyright and license information, please view
the LICENSE file that was distributed with this source code.
EOF;
$finder = new PhpCsFixer\Finder();
$config = new PhpCsFixer\Config('ISO3166', 'ISO3166 style guide');
$finder
->in(__DIR__)
;
/* Based on dev-master|^2.0 of php-cs-fixer */
$config
->setRules([
// default
'@PSR2' => true,
'@Symfony' => true,
// additionally
'array_syntax' => ['syntax' => 'short'],
'concat_space' => false,
'header_comment' => ['header' => $header],
'no_unused_imports' => false,
'no_useless_else' => true,
'no_useless_return' => true,
'ordered_imports' => true,
'phpdoc_align' => false,
'phpdoc_order' => true,
'phpdoc_align' => false,
'phpdoc_summary' => false,
'simplified_null_return' => false,
'ternary_to_null_coalescing' => true,
])
->setFinder($finder)
;
return $config;