rector.php 349 B

12345678910111213141516
  1. <?php
  2. declare(strict_types=1);
  3. use Rector\Config\RectorConfig;
  4. return RectorConfig::configure()
  5. ->withPaths([
  6. __DIR__ . '/drush',
  7. __DIR__ . '/node_modules',
  8. __DIR__ . '/scripts',
  9. __DIR__ . '/web',
  10. ])
  11. // uncomment to reach your current PHP version
  12. // ->withPhpSets()
  13. ->withTypeCoverageLevel(0);