mirror of
https://github.com/j0k3r/php-readability.git
synced 2026-09-27 06:26:17 +00:00
32 lines
1.0 KiB
PHP
32 lines
1.0 KiB
PHP
<?php
|
|
|
|
$finder = (new PhpCsFixer\Finder())
|
|
->in(__DIR__)
|
|
->exclude(['vendor', 'var', 'web'])
|
|
;
|
|
|
|
return (new PhpCsFixer\Config())
|
|
->setUsingCache(true)
|
|
->setRiskyAllowed(true)
|
|
->setRules([
|
|
'@Symfony' => true,
|
|
'@Symfony:risky' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
'combine_consecutive_unsets' => true,
|
|
'heredoc_to_nowdoc' => true,
|
|
'no_extra_blank_lines' => ['tokens' => ['break', 'continue', 'extra', 'return', 'throw', 'use', 'parenthesis_brace_block', 'square_brace_block', 'curly_brace_block']],
|
|
'no_unreachable_default_argument_value' => true,
|
|
'no_useless_else' => true,
|
|
'no_useless_return' => true,
|
|
'ordered_class_elements' => true,
|
|
'ordered_imports' => true,
|
|
'php_unit_strict' => false,
|
|
'phpdoc_order' => true,
|
|
// 'psr4' => true,
|
|
'strict_comparison' => true,
|
|
'strict_param' => true,
|
|
'concat_space' => ['spacing' => 'one'],
|
|
])
|
|
->setFinder($finder)
|
|
;
|