-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php_cs
39 lines (35 loc) · 1.07 KB
/
.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
37
38
39
<?php
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$rules = [
// default
'@PSR2' => true,
'@Symfony' => true,
// additionally
'array_syntax' => ['syntax' => 'short'],
'concat_space' => false,
'cast_spaces' => false,
'no_unused_imports' => false,
'no_useless_else' => true,
'no_useless_return' => true,
'no_superfluous_phpdoc_tags' => false,
'ordered_imports' => true,
'phpdoc_align' => true,
'phpdoc_order' => true,
'phpdoc_trim' => true,
'phpdoc_summary' => false,
'simplified_null_return' => false,
'ternary_to_null_coalescing' => true,
'binary_operator_spaces' => ['default' => 'align'],
];
$finder = (new Finder())
->files()
->name('*.php')
->in(__DIR__ . '/src')
->in(__DIR__ . '/tests')
;
return (new Config('lib-snmp'))
->setRiskyAllowed(true)
->setRules($rules)
->setFinder($finder)
;