gmail-filter-builder/.php_cs.dist

11 lines
288 B
Plaintext
Raw Normal View History

2018-03-20 20:29:21 +00:00
<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__);
return PhpCsFixer\Config::create()
->setRules([
'@PSR2' => true,
'array_syntax' => ['syntax' => 'short'],
'ordered_imports' => true,
'phpdoc_order' => true,
])
->setFinder($finder);