libresign/.php-cs-fixer.dist.php
Vitor Mattos 0b04a63b2b Add vendor-bin to be ignored by cs
Signed-off-by: Vitor Mattos <vitor@php.rio>
2023-04-10 16:57:08 +00:00

19 lines
318 B
PHP

<?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')
->notPath('vendor-bin')
->in(__DIR__);
return $config;