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 03d3f0c commit c6c1246Copy full SHA for c6c1246
.php-cs-fixer.dist.php
@@ -13,8 +13,6 @@
13
14
use CodeIgniter\CodingStandard\CodeIgniter4;
15
use Nexus\CsConfig\Factory;
16
-use Nexus\CsConfig\Fixer\Comment\NoCodeSeparatorCommentFixer;
17
-use Nexus\CsConfig\FixerGenerator;
18
use PhpCsFixer\Finder;
19
20
$finder = Finder::create()
@@ -44,12 +42,8 @@
44
42
];
45
43
46
$options = [
47
- 'cacheFile' => 'build/.php-cs-fixer.cache',
48
- 'finder' => $finder,
49
- 'customFixers' => FixerGenerator::create('utils/vendor/nexusphp/cs-config/src/Fixer', 'Nexus\\CsConfig\\Fixer'),
50
- 'customRules' => [
51
- NoCodeSeparatorCommentFixer::name() => true,
52
- ],
+ 'cacheFile' => 'build/.php-cs-fixer.cache',
+ 'finder' => $finder,
53
54
55
return Factory::create(new CodeIgniter4(), $overrides, $options)->forLibrary(
0 commit comments