mirror of
https://github.com/elyby/accounts.git
synced 2024-11-27 01:02:06 +05:30
17 lines
475 B
Plaintext
17 lines
475 B
Plaintext
|
<?php
|
||
|
$finder = \PhpCsFixer\Finder::create()
|
||
|
->in(__DIR__)
|
||
|
->exclude('data')
|
||
|
->exclude('docker')
|
||
|
->exclude('frontend')
|
||
|
->notPath('common/emails/views')
|
||
|
->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);
|