librenms/.php_cs
Tony Murray 8c639aa5a4 PSR2 Cleanup: /html edition
Travis tests for code conformance. Ignore warnings for now.
Fixed all errors, left most warnings.
2016-08-18 21:29:30 -05:00

16 lines
336 B
PHP

<?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);