-
Notifications
You must be signed in to change notification settings - Fork 46
/
.php-cs-fixer.php
64 lines (62 loc) · 3.21 KB
/
.php-cs-fixer.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/*
* This file is part of the Moodle Plugin CI package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Copyright (c) 2017 Blackboard Inc. (http://www.blackboard.com)
* License http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
return (new PhpCsFixer\Config())
->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
# Couple of changes from Symfony defaults
'modernize_strpos' => false, # TODO: Enable this once PHP8.0 is the min. req.
'nullable_type_declaration_for_default_null_value' => true, # We prefer explicit typing, no matter the defaults.
# We continue here.
'array_syntax' => ['syntax' => 'short'],
'combine_consecutive_unsets' => true,
'combine_consecutive_issets' => true,
'general_phpdoc_annotation_remove' => ['annotations' => [
'expectedException',
'expectedExceptionMessage',
'expectedExceptionMessageRegExp',
]],
'heredoc_to_nowdoc' => true,
'no_extra_blank_lines' => ['tokens' => [
'break', 'continue', 'extra', 'return',
'throw', 'use', 'parenthesis_brace_block',
'square_brace_block', 'curly_brace_block',
]],
'echo_tag_syntax' => true,
'no_unreachable_default_argument_value' => true,
'no_useless_else' => true,
'no_useless_return' => true,
'ordered_imports' => true,
'php_unit_strict' => true,
'phpdoc_add_missing_param_annotation' => true,
'no_superfluous_phpdoc_tags' => false,
'phpdoc_order' => true,
'semicolon_after_instruction' => true,
'strict_comparison' => true,
'strict_param' => true,
'binary_operator_spaces' => ['operators' => ['=' => 'align', '=>' => 'align']],
'concat_space' => ['spacing' => 'one'],
'align_multiline_comment' => true,
'yoda_style' => false,
'compact_nullable_typehint' => true,
'native_function_invocation' => false,
'native_constant_invocation' => false,
])
->setFinder(
PhpCsFixer\Finder::create()
->exclude('tests/Fixture')
->exclude('moodle')
->exclude('moodledata')
->name('moodle-plugin-ci')
->name('validate-version')
->in(__DIR__)
);