forked from TYPO3-Solr/ext-solr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php-cs-fixer.php
38 lines (33 loc) · 895 Bytes
/
.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
<?php
declare(strict_types=1);
use TYPO3\CodingStandards\CsFixerConfig;
$config = CsFixerConfig::create();
if (getenv('IS_ON_GITHUB_ACTIONS') === 'true') {
$config = $config->setHideProgress(true);
}
$config
->addRules(
[
'global_namespace_import' => [
'import_classes' => true,
'import_constants' => false,
'import_functions' => true,
],
'ordered_imports' => [
'imports_order' => ['class', 'function', 'const'],
'sort_algorithm' => 'alpha'
],
'general_phpdoc_annotation_remove' => [
'annotations' => [
'author', 'autor',
'copyright',
]
],
],
)
->getFinder()
->exclude([
'.Build'
])
->in(__DIR__);
return $config;