calendar/.php_cs.dist

17 lines
256 B
Plaintext
Raw Permalink Normal View History

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