mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2024-11-05 00:16:57 +00:00
19 lines
293 B
PHP
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;
|