mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
Bumps [nextcloud/coding-standard](https://github.com/nextcloud/coding-standard) from 0.3.0 to 0.5.0. - [Release notes](https://github.com/nextcloud/coding-standard/releases) - [Changelog](https://github.com/nextcloud/coding-standard/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/coding-standard/compare/v0.3.0...v0.5.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
20 lines
355 B
PHP
20 lines
355 B
PHP
<?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')
|
|
->notPath('build/stubs')
|
|
->notPath('composer')
|
|
->notPath('node_modules')
|
|
->notPath('vendor')
|
|
->in(__DIR__);
|
|
return $config;
|