summaryrefslogtreecommitdiffstats
path: root/.php_cs.dist
blob: 59781f0f835f69001775eb0cf2d3651455880c6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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;