shimmie2 for okebooru! changes are mostly cosmetic
https://booru.oke.moe
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
325 B
19 lines
325 B
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->exclude('ext/amazon_s3/lib')
|
|
->exclude('vendor')
|
|
->exclude('data')
|
|
->in(__DIR__)
|
|
;
|
|
|
|
return PhpCsFixer\Config::create()
|
|
->setRules([
|
|
'@PSR2' => true,
|
|
//'strict_param' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
])
|
|
->setFinder($finder)
|
|
;
|
|
|
|
?>
|
|
|