We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d0170f9 + a3eb218 commit a28c7a4Copy full SHA for a28c7a4
.php-cs-fixer.dist.php
@@ -1,5 +1,14 @@
1
<?php
2
3
+/*
4
+ * This file is part of the Liquid package.
5
+ *
6
+ * For the full copyright and license information, please view the LICENSE
7
+ * file that was distributed with this source code.
8
9
+ * @package Liquid
10
+ */
11
+
12
$header = <<<'EOF'
13
This file is part of the Liquid package.
14
@@ -11,6 +20,7 @@
20
21
$config = new PhpCsFixer\Config();
22
$config
23
+ ->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect())
24
->setRiskyAllowed(true)
15
25
->setRules([
16
26
'@PSR2' => true,
@@ -41,6 +51,7 @@
41
51
->setFinder(
42
52
PhpCsFixer\Finder::create()
43
53
->in(__DIR__)
54
+ ->append([__FILE__])
44
55
)
45
56
;
46
57
0 commit comments