1
0
mirror of https://github.com/mrclay/minify.git synced 2025-01-17 21:28:14 +01:00
minify/.php_cs

28 lines
496 B
Plaintext
Raw Normal View History

<?php
$finder = Symfony\CS\Finder\DefaultFinder::create()
->in(__DIR__ . '/lib')
;
return Symfony\CS\Config\Config::create()
2016-10-16 16:46:43 +03:00
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
2016-01-22 00:56:05 +02:00
->setUsingCache(true)
->fixers(array(
'linefeed',
'trailing_spaces',
'unused_use',
'short_tag',
'return',
'visibility',
'php_closing_tag',
'extra_empty_lines',
'function_declaration',
'include',
'controls_spaces',
'elseif',
'-eof_ending',
2016-10-16 16:46:43 +03:00
'-method_argument_space',
))
->finder($finder)
;