photos/.php-cs-fixer.dist.php

19 lines
302 B
PHP

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