From 47c9c34cca22602fb609de6c0e1d32ec17a9e7fe Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Thu, 6 Jan 2022 14:19:06 +0100 Subject: Fix psalm not running 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 --- .php-cs-fixer.dist.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .php-cs-fixer.dist.php (limited to '.php-cs-fixer.dist.php') diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php new file mode 100644 index 00000000000..fe6d31065f4 --- /dev/null +++ b/.php-cs-fixer.dist.php @@ -0,0 +1,24 @@ +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; -- cgit v1.2.3