summaryrefslogtreecommitdiff
path: root/.php_cs
blob: 290e9bf5fbcba017047ab841608f471cad460ade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php

return Symfony\CS\Config\Config::create()
    ->setUsingLinter(false)
    ->setUsingCache(true)
    ->finder(
        Symfony\CS\Finder\DefaultFinder::create()
            ->in(__DIR__)
            ->exclude(array(
                // directories containing files with content that is autogenerated by `var_export`, which breaks CS in output code
                'src/Symfony/Component/DependencyInjection/Tests/Fixtures',
                'src/Symfony/Component/Routing/Tests/Fixtures/dumper',
                // fixture templates
                'src/Symfony/Component/Templating/Tests/Fixtures/templates',
                // resource templates
                'src/Symfony/Bundle/FrameworkBundle/Resources/views/Form',
            ))
            // file content autogenerated by `var_export`
            ->notPath('src/Symfony/Component/Translation/Tests/fixtures/resources.php')
            // autogenerated xmls
            ->notPath('src/Symfony/Component/Console/Tests/Fixtures/application_1.xml')
            ->notPath('src/Symfony/Component/Console/Tests/Fixtures/application_2.xml')
            // yml
            ->notPath('src/Symfony/Component/Yaml/Tests/Fixtures/sfTests.yml')
            // test template
            ->notPath('src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom/_name_entry_label.html.php')
            // explicit heredoc test
            ->notPath('src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/translation.html.php')
    )
;