mirror of
https://github.com/elyby/accounts.git
synced 2024-11-16 18:23:29 +05:30
18 lines
512 B
PHP
18 lines
512 B
PHP
<?php
|
|
$finder = \PhpCsFixer\Finder::create()
|
|
->in(__DIR__)
|
|
->exclude('data')
|
|
->exclude('docker')
|
|
->exclude('frontend')
|
|
->notPath('common/emails/views')
|
|
->notPath('common/mail/layouts')
|
|
->notPath('/.*\/runtime/')
|
|
->notPath('autocompletion.php')
|
|
->notPath('tests/codeception/_output')
|
|
->notPath('/tests\/codeception\/.*\/_output/')
|
|
->notPath('/tests\/codeception\/.*\/_support\/_generated/')
|
|
->name('yii');
|
|
|
|
return \Ely\CS\Config::create()
|
|
->setFinder($finder);
|