1
0
Fork 0
mirror of https://github.com/MetaProvide/talked-client.git synced 2025-04-11 15:51:27 +00:00
talked-client/.php_cs.dist
2021-08-09 16:29:29 +02:00

18 lines
293 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')
->in(__DIR__);
return $config;