This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/.php_cs.dist

40 lines
1.7 KiB
Plaintext
Raw Normal View History

<?php
if (!file_exists(__DIR__.'/src')) {
exit(0);
}
2016-12-03 09:46:32 +00:00
return PhpCsFixer\Config::create()
->setRules(array(
'@Symfony' => true,
'@Symfony:risky' => true,
'array_syntax' => array('syntax' => 'long'),
2016-06-20 17:23:25 +01:00
))
2016-12-03 09:46:32 +00:00
->setRiskyAllowed(true)
->setFinder(
PhpCsFixer\Finder::create()
2017-01-20 15:16:44 +00:00
->in(__DIR__.'/src')
2015-03-24 21:20:39 +00:00
->exclude(array(
// directories containing files with content that is autogenerated by `var_export`, which breaks CS in output code
2017-01-21 16:45:58 +00:00
'Symfony/Component/DependencyInjection/Tests/Fixtures',
'Symfony/Component/Routing/Tests/Fixtures/dumper',
2015-03-24 21:20:39 +00:00
// fixture templates
2017-01-21 16:45:58 +00:00
'Symfony/Component/Templating/Tests/Fixtures/templates',
'Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom',
2015-03-24 21:20:39 +00:00
// resource templates
2017-01-21 16:45:58 +00:00
'Symfony/Bundle/FrameworkBundle/Resources/views/Form',
2015-03-24 21:20:39 +00:00
))
// file content autogenerated by `var_export`
2017-01-21 16:45:58 +00:00
->notPath('Symfony/Component/Translation/Tests/fixtures/resources.php')
2015-03-24 21:20:39 +00:00
// autogenerated xmls
2017-01-21 16:45:58 +00:00
->notPath('Symfony/Component/Console/Tests/Fixtures/application_1.xml')
->notPath('Symfony/Component/Console/Tests/Fixtures/application_2.xml')
2015-03-24 21:20:39 +00:00
// yml
2017-01-21 16:45:58 +00:00
->notPath('Symfony/Component/Yaml/Tests/Fixtures/sfTests.yml')
2015-03-24 21:20:39 +00:00
// test template
2017-01-21 16:45:58 +00:00
->notPath('Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom/_name_entry_label.html.php')
2015-12-21 11:01:57 +00:00
// explicit heredoc test
2017-01-21 16:45:58 +00:00
->notPath('Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/translation.html.php')
2015-03-24 21:20:39 +00:00
)
;