1
0
mirror of https://github.com/halaxa/json-machine.git synced 2025-01-30 10:57:34 +01:00
json-machine/.php-cs-fixer.dist.php
2022-01-20 12:39:08 +01:00

19 lines
377 B
PHP

<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude('ext')
;
$config = new PhpCsFixer\Config();
return $config->setRules([
'@Symfony' => true,
'not_operator_with_space' => true,
'yoda_style' => false,
'single_line_throw' => false,
'unary_operator_spaces' => false,
'visibility_required' => false,
])
->setFinder($finder)
;