f7cloud_client/apps/notes/.php-cs-fixer.dist.php
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

19 lines
291 B
PHP

<?php
declare(strict_types=1);
require_once './vendor/autoload.php';
use F7cloud\CodingStandard\Config;
$config = new Config();
$config
->getFinder()
->ignoreVCSIgnored(true)
->notPath('build')
->notPath('l10n')
->notPath('src')
->notPath('vendor')
->in(__DIR__);
return $config;