Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.php-cs-fixer.dist.php - github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54b0e3cf8c34e4cb1c62e0f9b84ac3525a0649a5 (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 'vendor/autoload.php';

use Nextcloud\CodingStandard\Config;

$config = new Config();
$config
	->getFinder()
	->ignoreVCSIgnored(true)
	->notPath('build')
	->notPath('l10n')
	->notPath('lib/Vendor')
	->notPath('src')
	->notPath('vendor')
	->notPath('tests')
	->in(__DIR__);
return $config;