This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/.php_cs.dist

15 lines
291 B
Plaintext
Raw Normal View History

2019-03-26 21:58:23 +00:00
<?php
use PhpCsFixer\Config;
use Symfony\Component\Finder\Finder;
$finder = new Finder();
2019-10-18 18:50:34 +00:00
$finder->files()->in('app/src')->in('app/tests');
2019-03-26 21:58:23 +00:00
return Config::create()
->setRules([
'@PSR2' => true,
'array_syntax' => ['syntax' => 'short'],
])
->setFinder($finder);