scimserviceprovider/.php-cs-fixer.dist.php

18 lines
292 B
PHP
Raw Permalink Normal View History

2022-05-18 14:23:28 +00:00
<?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('src')
->notPath('vendor')
->in(__DIR__);
return $config;