user_external/.php-cs-fixer.dist.php
John Molakvoæ 98768cfb57
Add workflows
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-04-15 08:18:31 +02:00

18 lines
294 B
PHP

<?php
declare(strict_types=1);
require_once './vendor/autoload.php';
use Nextcloud\CodingStandard\Config;
$config = new Config();
$config
->getFinder()
->notPath('build')
->notPath('l10n')
->notPath('node_modules')
->notPath('src')
->notPath('vendor')
->in(__DIR__);
return $config;