2020-03-27 18:54:07 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
require_once './lib/composer/autoload.php';
|
|
|
|
|
|
|
|
use Nextcloud\CodingStandard\Config;
|
|
|
|
|
|
|
|
$config = new Config();
|
|
|
|
$config
|
|
|
|
->getFinder()
|
|
|
|
->exclude('config')
|
|
|
|
->exclude('data')
|
|
|
|
->notPath('3rdparty')
|
2021-03-31 11:09:18 +03:00
|
|
|
->notPath('build/integration/vendor')
|
|
|
|
->notPath('build/lib')
|
|
|
|
->notPath('build/node_modules')
|
2020-07-15 23:38:09 +03:00
|
|
|
->notPath('build/stubs')
|
2020-03-27 18:54:07 +03:00
|
|
|
->notPath('composer')
|
2021-01-12 12:15:48 +03:00
|
|
|
->notPath('node_modules')
|
2020-03-27 18:54:07 +03:00
|
|
|
->notPath('vendor')
|
|
|
|
->in(__DIR__);
|
|
|
|
return $config;
|