2021-03-28 19:21:41 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
|
|
->in(__DIR__ . '/src')
|
|
|
|
->in(__DIR__ . '/build')
|
|
|
|
->in(__DIR__ . '/tests')
|
2021-08-29 23:33:07 +01:00
|
|
|
->in(__DIR__ . '/tools')
|
2021-03-28 19:21:41 +01:00
|
|
|
->notPath('plugins/DevTools')
|
|
|
|
->notName('PocketMine.php');
|
|
|
|
|
2021-05-04 22:18:18 +01:00
|
|
|
return (new PhpCsFixer\Config)
|
2021-03-28 19:21:41 +01:00
|
|
|
->setRiskyAllowed(true)
|
|
|
|
->setRules([
|
|
|
|
'align_multiline_comment' => [
|
|
|
|
'comment_type' => 'phpdocs_only'
|
|
|
|
],
|
|
|
|
'array_indentation' => true,
|
|
|
|
'array_syntax' => [
|
|
|
|
'syntax' => 'short'
|
|
|
|
],
|
2021-12-14 23:14:39 +00:00
|
|
|
'binary_operator_spaces' => [
|
|
|
|
'default' => 'single_space'
|
|
|
|
],
|
2021-03-28 19:21:41 +01:00
|
|
|
'blank_line_after_namespace' => true,
|
|
|
|
'blank_line_after_opening_tag' => true,
|
|
|
|
'blank_line_before_statement' => [
|
|
|
|
'statements' => [
|
|
|
|
'declare'
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'cast_spaces' => [
|
|
|
|
'space' => 'single'
|
|
|
|
],
|
|
|
|
'concat_space' => [
|
|
|
|
'spacing' => 'one'
|
|
|
|
],
|
|
|
|
'declare_strict_types' => true,
|
|
|
|
'elseif' => true,
|
2022-01-10 21:41:37 +00:00
|
|
|
'fully_qualified_strict_types' => true,
|
2021-03-28 19:21:41 +01:00
|
|
|
'global_namespace_import' => [
|
|
|
|
'import_constants' => true,
|
|
|
|
'import_functions' => true,
|
|
|
|
'import_classes' => null,
|
|
|
|
],
|
2022-06-04 17:34:49 +01:00
|
|
|
'header_comment' => [
|
|
|
|
'comment_type' => 'comment',
|
|
|
|
'header' => <<<BODY
|
|
|
|
|
|
|
|
____ _ _ __ __ _ __ __ ____
|
|
|
|
| _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
|
|
|
| |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
|
|
|
| __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
|
|
|
|_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
@author PocketMine Team
|
|
|
|
@link http://www.pocketmine.net/
|
|
|
|
|
|
|
|
|
|
|
|
BODY,
|
|
|
|
'location' => 'after_open'
|
|
|
|
],
|
2021-03-28 19:21:41 +01:00
|
|
|
'indentation_type' => true,
|
2022-01-20 19:23:33 +00:00
|
|
|
'logical_operators' => true,
|
2022-12-13 02:12:33 +09:00
|
|
|
'native_constant_invocation' => [
|
|
|
|
'scope' => 'namespaced'
|
|
|
|
],
|
2021-03-28 19:21:41 +01:00
|
|
|
'native_function_invocation' => [
|
2021-08-19 15:26:45 +01:00
|
|
|
'scope' => 'namespaced',
|
|
|
|
'include' => ['@all'],
|
2021-03-28 19:21:41 +01:00
|
|
|
],
|
2022-08-15 17:16:04 +01:00
|
|
|
'new_with_braces' => [
|
|
|
|
'named_class' => true,
|
|
|
|
'anonymous_class' => false,
|
|
|
|
],
|
2021-03-28 19:21:41 +01:00
|
|
|
'no_closing_tag' => true,
|
|
|
|
'no_empty_phpdoc' => true,
|
|
|
|
'no_extra_blank_lines' => true,
|
|
|
|
'no_superfluous_phpdoc_tags' => [
|
2021-08-19 15:25:20 +01:00
|
|
|
'allow_mixed' => true,
|
2021-03-28 19:21:41 +01:00
|
|
|
],
|
|
|
|
'no_trailing_whitespace' => true,
|
|
|
|
'no_trailing_whitespace_in_comment' => true,
|
|
|
|
'no_whitespace_in_blank_line' => true,
|
|
|
|
'no_unused_imports' => true,
|
|
|
|
'ordered_imports' => [
|
|
|
|
'imports_order' => [
|
|
|
|
'class',
|
|
|
|
'function',
|
|
|
|
'const',
|
|
|
|
],
|
|
|
|
'sort_algorithm' => 'alpha'
|
|
|
|
],
|
2022-12-06 13:21:57 +00:00
|
|
|
'phpdoc_align' => [
|
|
|
|
'align' => 'vertical',
|
|
|
|
'tags' => [
|
|
|
|
'param',
|
|
|
|
]
|
|
|
|
],
|
2021-10-21 20:32:37 +01:00
|
|
|
'phpdoc_line_span' => [
|
|
|
|
'property' => 'single',
|
|
|
|
'method' => null,
|
|
|
|
'const' => null
|
|
|
|
],
|
2021-03-28 19:21:41 +01:00
|
|
|
'phpdoc_trim' => true,
|
|
|
|
'phpdoc_trim_consecutive_blank_line_separation' => true,
|
2021-12-14 22:50:43 +00:00
|
|
|
'return_type_declaration' => [
|
|
|
|
'space_before' => 'one'
|
|
|
|
],
|
2022-01-07 20:12:21 +00:00
|
|
|
'single_blank_line_at_eof' => true,
|
2021-03-28 19:21:41 +01:00
|
|
|
'single_import_per_statement' => true,
|
|
|
|
'strict_param' => true,
|
2021-12-14 23:14:39 +00:00
|
|
|
'unary_operator_spaces' => true,
|
2021-03-28 19:21:41 +01:00
|
|
|
])
|
|
|
|
->setFinder($finder)
|
|
|
|
->setIndent("\t")
|
|
|
|
->setLineEnding("\n");
|