app_template/.php-cs-fixer.dist.php
provokateurin a5f9017292
feat: Initial commit
Signed-off-by: provokateurin <kate@provokateurin.de>
2024-04-25 10:03:54 +02:00

20 lines
315 B
PHP

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