Skip to content

Commit 2aa4cb3

Browse files
committed
chore: update php-cs-fixer.dist.php
1 parent b6be60e commit 2aa4cb3

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.php-cs-fixer.dist.php

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,19 @@
1010
__DIR__ . '/app/',
1111
__DIR__ . '/tests/',
1212
])
13-
->exclude('build')
14-
->append([__FILE__]);
13+
->exclude([
14+
'build',
15+
'Views',
16+
])
17+
->append([
18+
__FILE__,
19+
__DIR__ . '/rector.php',
20+
]);
1521

16-
$overrides = [];
22+
$overrides = [
23+
// 'declare_strict_types' => true,
24+
// 'void_return' => true,
25+
];
1726

1827
$options = [
1928
'finder' => $finder,

0 commit comments

Comments
 (0)