2022-05-20 15:38:35 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
require_once './vendor/autoload.php';
|
|
|
|
|
|
|
|
use Nextcloud\CodingStandard\Config;
|
|
|
|
|
|
|
|
$config = new Config();
|
|
|
|
$config
|
|
|
|
->getFinder()
|
|
|
|
// ->ignoreVCSIgnored(true)
|
|
|
|
->notPath('build')
|
2023-01-25 10:15:38 +03:00
|
|
|
->notPath('composer')
|
2022-05-20 15:38:35 +03:00
|
|
|
->notPath('l10n')
|
|
|
|
->notPath('src')
|
|
|
|
->notPath('node_modules')
|
|
|
|
->notPath('vendor')
|
|
|
|
->in(__DIR__);
|
|
|
|
return $config;
|