CodeIgniter4/.php-cs-fixer.no-header.php

45 lines
1.1 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
2021-07-19 21:32:33 +08:00
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
use CodeIgniter\CodingStandard\CodeIgniter4;
use Nexus\CsConfig\Factory;
2021-09-03 20:57:36 +08:00
use Nexus\CsConfig\Fixer\Comment\NoCodeSeparatorCommentFixer;
use Nexus\CsConfig\FixerGenerator;
use PhpCsFixer\Finder;
$finder = Finder::create()
->files()
->in([
__DIR__ . '/admin',
__DIR__ . '/app',
__DIR__ . '/public',
])
2022-08-21 14:20:28 +08:00
->exclude(['Views/errors/html'])
2021-10-29 18:23:05 +08:00
->notName('#Logger\.php$#')
->append([
__DIR__ . '/admin/starter/builds',
]);
2022-02-09 22:20:04 +08:00
$overrides = [];
$options = [
'cacheFile' => 'build/.php-cs-fixer.no-header.cache',
2021-08-13 16:48:41 +08:00
'finder' => $finder,
'customFixers' => FixerGenerator::create('vendor/nexusphp/cs-config/src/Fixer', 'Nexus\\CsConfig\\Fixer'),
'customRules' => [
2021-09-03 20:57:36 +08:00
NoCodeSeparatorCommentFixer::name() => true,
2021-08-13 16:48:41 +08:00
],
];
return Factory::create(new CodeIgniter4(), $overrides, $options)->forProjects();