mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Travis tests for code conformance. Ignore warnings for now. Fixed all errors, left most warnings.
16 lines
336 B
PHP
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);
|