зеркало из https://github.com/nextcloud/deck.git
20 строки
322 B
PHP
20 строки
322 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('node_modules')
|
|
->notPath('vendor')
|
|
->in(__DIR__);
|
|
return $config;
|