1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-23 01:22:30 +01:00

Update .php_cs.dist

This commit is contained in:
Dane Everitt 2021-01-23 13:37:07 -08:00
parent 29e0bebc73
commit 91cdf08489
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -3,15 +3,7 @@
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$finder = (new Finder)->in([
'app',
'bootstrap',
'config',
'database',
'resources/lang',
'routes',
'tests',
]);
$finder = (new Finder)->in(__DIR__)->exclude(['vendor', 'node_modules', 'storage']);
return (new Config)
->setRiskyAllowed(true)