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.
1 parent 66e7e29 commit a3eb218Copy full SHA for a3eb218
.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,
@@ -40,6 +50,7 @@
40
50
->setFinder(
41
51
PhpCsFixer\Finder::create()
42
52
->in(__DIR__)
53
+ ->append([__FILE__])
43
54
)
44
55
;
45
56
0 commit comments