選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

.php_cs.dist 354B

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. ->ignoreVCSIgnored(true)
  9. ->exclude('config')
  10. ->exclude('data')
  11. ->notPath('3rdparty')
  12. ->notPath('build/stubs')
  13. ->notPath('composer')
  14. ->notPath('vendor')
  15. ->in(__DIR__);
  16. return $config;