You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
293 B

  1. <?php
  2. declare(strict_types=1);
  3. require_once './vendor/autoload.php';
  4. use Nextcloud\CodingStandard\Config;
  5. $config = new Config();
  6. $config
  7. ->getFinder()
  8. ->ignoreVCSIgnored(true)
  9. ->notPath('build')
  10. ->notPath('l10n')
  11. ->notPath('src')
  12. ->notPath('vendor')
  13. ->in(__DIR__);
  14. return $config;