16 lines
336 B
Plaintext
Raw Normal View History

2016-08-10 15:16:21 -05:00
<?php
// PHP CS Fixer config file
$finder = Symfony\CS\Finder\DefaultFinder::create()
->exclude('html/lib')
->exclude('lib')
->exclude('logs')
->exclude('mibs')
->exclude('rrd')
->in(__DIR__);
return Symfony\CS\Config\Config::create()
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
->finder($finder);