Skip to content
Snippets Groups Projects
.php_cs.dist 293 B
Newer Older
  • Learn to ignore specific revisions
  • Christoph Wurst's avatar
    Christoph Wurst committed
    <?php
    
    declare(strict_types=1);
    
    require_once './vendor/autoload.php';
    
    use Nextcloud\CodingStandard\Config;
    
    $config = new Config();
    $config
    	->getFinder()
    	->ignoreVCSIgnored(true)
    	->notPath('build')
    	->notPath('l10n')
    	->notPath('src')
    	->notPath('vendor')
    	->in(__DIR__);
    return $config;