1
0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2024-09-21 12:08:01 +00:00
nextcloud-breeze-dark/.php_cs.dist

19 lines
293 B
PHP

<?php
declare(strict_types=1);
require_once './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;