Skip to content

Instantly share code, notes, and snippets.

@jleonardolemos
Created September 10, 2019 17:25
Show Gist options
  • Save jleonardolemos/7e5f79642b0b77d7b8bd70111aadb578 to your computer and use it in GitHub Desktop.
Save jleonardolemos/7e5f79642b0b77d7b8bd70111aadb578 to your computer and use it in GitHub Desktop.
php cs fixer file
<?php
$finder = PhpCsFixer\Finder::create()
->exclude('somedir')
->notPath('src/Symfony/Component/Translation/Tests/fixtures/resources.php')
->in(__DIR__);
return PhpCsFixer\Config::create()
->setRules([
'@PSR2' => true
])->setFinder($finder);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment