mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
16 lines
336 B
Plaintext
16 lines
336 B
Plaintext
|
<?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);
|