.php_cs.dist 451 B

1234567891011121314151617181920212223
  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/integration/vendor')
  12. ->notPath('build/lib')
  13. ->notPath('build/node_modules')
  14. ->notPath('build/stubs')
  15. ->notPath('composer')
  16. ->notPath('node_modules')
  17. ->notPath('vendor')
  18. ->in(__DIR__);
  19. return $config;