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.

.php_cs.dist 355B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. require_once './lib/composer/autoload.php';
  4. use Nextcloud\CodingStandard\Config;
  5. $config = new Config();
  6. $config
  7. ->getFinder()
  8. ->exclude('config')
  9. ->exclude('data')
  10. ->notPath('3rdparty')
  11. ->notPath('build/stubs')
  12. ->notPath('composer')
  13. ->notPath('node_modules')
  14. ->notPath('vendor')
  15. ->in(__DIR__);
  16. return $config;