Files
cospend-nc/.php-cs-fixer.dist.php
Julien Veyssier eace16b24f exclude node modules in php-cs check
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
2024-01-11 11:07:36 +01:00

18 lines
293 B
PHP

<?php
declare(strict_types=1);
require_once './vendor/autoload.php';
use Nextcloud\CodingStandard\Config;
$config = new Config();
$config
->getFinder()
->notPath('build')
->notPath('l10n')
->notPath('src')
->notPath('node_modules')
->notPath('vendor')
->in(__DIR__);
return $config;