50 lines
1.7 KiB
YAML
50 lines
1.7 KiB
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: config-phpcsfixer
|
|
data:
|
|
php-cs-fixer.dist.php: |
|
|
<?php
|
|
$finder = (new PhpCsFixer\Finder())
|
|
->ignoreDotFiles(false)
|
|
->ignoreVCSIgnored(true)
|
|
->exclude(['dev-tools/phpstan', 'tests/Fixtures'])
|
|
->in(__DIR__);
|
|
// TODO: Définir les règles de style communes
|
|
// spécifiques au projet
|
|
return (new PhpCsFixer\Config())
|
|
->setRules([
|
|
'@Symfony' => true,
|
|
'concat_space' => ['spacing' => 'none'],
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
'combine_consecutive_issets' => true,
|
|
'explicit_indirect_variable' => true,
|
|
'no_useless_return' => true,
|
|
'ordered_imports' => true,
|
|
'no_unused_imports' => true,
|
|
'no_spaces_after_function_name' => true,
|
|
'no_spaces_inside_parenthesis' => true,
|
|
'ternary_operator_spaces' => true,
|
|
'class_definition' => ['single_line' => true],
|
|
'whitespace_after_comma_in_array' => true,
|
|
// phpdoc
|
|
'phpdoc_add_missing_param_annotation' => ['only_untyped' => true],
|
|
'phpdoc_order' => true,
|
|
'phpdoc_types_order' => [
|
|
'null_adjustment' => 'always_last',
|
|
'sort_algorithm' => 'alpha',
|
|
],
|
|
'phpdoc_no_empty_return' => false,
|
|
'phpdoc_summary' => false,
|
|
'general_phpdoc_annotation_remove' => [
|
|
'annotations' => [
|
|
'expectedExceptionMessageRegExp',
|
|
'expectedException',
|
|
'expectedExceptionMessage',
|
|
'author',
|
|
],
|
|
],
|
|
])
|
|
->setFinder($finder);
|
|
|