-
Notifications
You must be signed in to change notification settings - Fork 4
/
.php_cs.dist
60 lines (56 loc) · 2.13 KB
/
.php_cs.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__ . '/src')
->in(__DIR__ . '/tests')
->exclude('Hydrator')
;
return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'array_syntax' => [
'syntax' => 'short',
],
// On ne peut pas le configurer assez finement. Par exemple il est
// impossible de lui dire que les deux variantes } else { ou
// }\nelse { sont OK.
'braces' => [
'allow_single_line_closure' => false,
'position_after_anonymous_constructs' => 'same',
'position_after_control_structures' => 'same',
'position_after_functions_and_oop_constructs' => 'next',
],
'class_definition' => [
// La déclaration d'une classe c'est long parfois...
'single_line' => false,
],
'concat_space' => [
'spacing' => 'one',
],
'multiline_whitespace_before_semicolons' => [
'strategy' => 'new_line_for_chained_calls',
],
'native_constant_invocation' => true,
'native_function_casing' => true,
'native_function_invocation' => true,
'no_empty_phpdoc' => false,
'no_superfluous_phpdoc_tags' => false,
'ordered_imports' => true,
// Tout ce qui concerne la PHPdoc provient du projet Schapi, merci
// @qde et @pac pour avoir expérimenté sur le sujet. Les conventions
// de Symfony sur la PHPdoc rendent de toute façon complètement
// illisible ces dernières dans le code.
'phpdoc_align' => false,
'phpdoc_annotation_without_dot' => false,
'phpdoc_separation' => false,
'phpdoc_summary' => false,
'phpdoc_to_comment' => false,
'phpdoc_trim' => false,
'phpdoc_trim_consecutive_blank_line_separation' => false,
'phpdoc_types_order' => false,
// En compactant les throw, il rend pas mal de code illisible.
'single_line_throw' => false,
// Les quotes ' comme " sont OK, il n'est pas nécessaire de les changer.
'single_quote' => false,
])
->setFinder($finder)
;