summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/masterminds/html5/.php_cs.dist
blob: d5e49183d574f5cc4b3026763cba624517c03e25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

$finder = PhpCsFixer\Finder::create()
    ->in(__DIR__)
;

return PhpCsFixer\Config::create()
    ->setRules(array(
        '@Symfony' => true,
        'concat_space' => array('spacing' => 'one'),
        'phpdoc_annotation_without_dot' => false,
    ))
    ->setFinder($finder)
;