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

.php-cs-fixer.dist.php - github.com/westberliner/checksum.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 309985535625f975f3c205f39cd15738a274b1ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

declare(strict_types=1);

require_once './vendor/autoload.php';

use Nextcloud\CodingStandard\Config;

$config = new Config();
$config
	->getFinder()
	->notPath('js')
	->notPath('l10n')
	->notPath('src')
    ->notPath('node_modules')
    ->notPath('src')
	->notPath('vendor')
	->in(__DIR__);
return $config;