1
0
espelhamento de https://github.com/nextcloud/server.git sincronizado 2024-07-30 08:15:57 +02:00
nextcloud/.php_cs.dist
Daniel Kesselberg 87d738d9fa
Exclude stubs from code style check
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2020-08-18 08:58:19 +02:00

21 linhas
354 B
PHP

<?php
declare(strict_types=1);
require_once './lib/composer/autoload.php';
use Nextcloud\CodingStandard\Config;
$config = new Config();
$config
->getFinder()
->ignoreVCSIgnored(true)
->exclude('config')
->exclude('data')
->notPath('3rdparty')
->notPath('build/stubs')
->notPath('composer')
->notPath('vendor')
->in(__DIR__);
return $config;