mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
18 lines
319 B
PHP
18 lines
319 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require_once './vendor/autoload.php';
|
|
|
|
use Nextcloud\CodingStandard\Config;
|
|
|
|
$config = new Config();
|
|
$config
|
|
->getFinder()
|
|
->ignoreVCSIgnored(true)
|
|
->notPath('data')
|
|
->notPath('session')
|
|
->notPath('public')
|
|
->notPath('vendor')
|
|
->in(__DIR__);
|
|
return $config;
|