nextcloud/coding-standard

Signed-off-by: Jean-Yves <7360784+docjyJ@users.noreply.github.com>
This commit is contained in:
Jean-Yves 2024-10-02 14:09:29 +02:00
parent 69d9c925d0
commit 161d8820fe
No known key found for this signature in database
GPG key ID: 644C8B9C4CABAEF7
5 changed files with 219 additions and 4 deletions

View file

@ -0,0 +1,18 @@
<?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;