-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.php-cs-fixer.dist.php
45 lines (39 loc) · 986 Bytes
/
.php-cs-fixer.dist.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
declare(strict_types=1);
/**
* This file is part of Liaison Revision.
*
* (c) 2020 John Paul E. Balandan, CPA <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
use Nexus\CsConfig\Factory;
use Nexus\CsConfig\Ruleset\Nexus73;
use PhpCsFixer\Finder;
$finder = Finder::create()
->files()
->in([__DIR__])
->exclude(['build', 'mock'])
->append([__FILE__])
;
$overrides = [
// @todo remove when bug is fixed
'class_attributes_separation' => [
'elements' => [
'const' => 'one',
'property' => 'one',
'method' => 'one',
],
],
];
$options = [
'finder' => $finder,
'cacheFile' => 'build/.php-cs-fixer.cache',
];
return Factory::create(new Nexus73(), $overrides, $options)->forLibrary(
'Liaison Revision',
'John Paul E. Balandan, CPA',
2020,
);