mirror of
https://github.com/filamentphp/filament.git
synced 2026-08-31 01:14:50 +08:00
12 lines
218 B
PHP
12 lines
218 B
PHP
<?php
|
|
|
|
use Rector\Config\RectorConfig;
|
|
|
|
return RectorConfig::configure()
|
|
->withPaths([
|
|
__DIR__ . '/packages',
|
|
])
|
|
->withTypeCoverageLevel(0)
|
|
->withDeadCodeLevel(0)
|
|
->withCodeQualityLevel(0);
|