mirror of
https://github.com/nextcloud/server.git
synced 2025-02-12 03:59:16 +00:00
47c9c34cca
The issue was that we were using psalm/phar instead of vimeo/psalm. This caused issue with the custom psalm plugin in buildd/psalm. This is using the opportunity to also update the psalm version from 3.8 to 3.17 and the php-cs-fixer too. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
24 lines
491 B
PHP
24 lines
491 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require_once './vendor-bin/cs-fixer/vendor/autoload.php';
|
|
|
|
use Nextcloud\CodingStandard\Config;
|
|
|
|
$config = new Config();
|
|
$config
|
|
->getFinder()
|
|
->ignoreVCSIgnored(true)
|
|
->exclude('config')
|
|
->exclude('data')
|
|
->notPath('3rdparty')
|
|
->notPath('build/integration/vendor')
|
|
->notPath('build/lib')
|
|
->notPath('build/node_modules')
|
|
->notPath('build/stubs')
|
|
->notPath('composer')
|
|
->notPath('node_modules')
|
|
->notPath('vendor')
|
|
->in(__DIR__);
|
|
return $config;
|