We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5ea3a2 commit 51a46ebCopy full SHA for 51a46eb
1 file changed
src/Template/.php-cs-fixer.dist.php
@@ -10,10 +10,19 @@
10
__DIR__ . '/app/',
11
__DIR__ . '/tests/',
12
])
13
- ->exclude('build')
14
- ->append([__FILE__]);
+ ->exclude([
+ 'build',
15
+ 'Views',
16
+ ])
17
+ ->append([
18
+ __FILE__,
19
+ __DIR__ . '/rector.php',
20
+ ]);
21
-$overrides = [];
22
+$overrides = [
23
+ // 'declare_strict_types' => true,
24
+ // 'void_return' => true,
25
+];
26
27
$options = [
28
'finder' => $finder,
0 commit comments