-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
.php-cs-fixer.dist.php
37 lines (34 loc) · 1.24 KB
/
.php-cs-fixer.dist.php
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
<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->ignoreDotFiles(true)
->ignoreVCS(true)
->exclude(array('build', 'vendor'))
->files()
->name('*.php')
;
$config = new PhpCsFixer\Config();
return $config
->setUsingCache(true)
->setRiskyAllowed(true)
->setFinder($finder)
->setRules(array(
'@Symfony' => true,
'@Symfony:risky' => true,
'@PHPUnit48Migration:risky' => true,
'array_syntax' => ['syntax' => 'short'],
'fopen_flags' => false,
'ordered_imports' => true,
'protected_to_private' => false,
'native_function_invocation' => ['exclude' => ['sprintf']],
// Part of future @Symfony ruleset in PHP-CS-Fixer To be removed from the config file once upgrading
'phpdoc_types_order' => ['null_adjustment' => 'always_last', 'sort_algorithm' => 'none'],
'single_line_throw' => false,
// this must be disabled because the output of some tests include NBSP characters
'non_printable_character' => false,
'blank_line_between_import_groups' => false,
'no_trailing_comma_in_singleline' => false,
'nullable_type_declaration_for_default_null_value' => true,
'phpdoc_to_comment' => false,
))
;