mirror of
https://github.com/nextcloud/richdocuments.git
synced 2025-12-18 05:20:43 +01:00
20 lines
345 B
PHP
20 lines
345 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('composer')
|
|
->notPath('l10n')
|
|
->notPath('src')
|
|
->notPath('node_modules')
|
|
->notPath('vendor')
|
|
->in(__DIR__);
|
|
return $config;
|