This repository was archived by the owner on Jun 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.php_cs.dist
More file actions
35 lines (35 loc) · 1.35 KB
/
.php_cs.dist
File metadata and controls
35 lines (35 loc) · 1.35 KB
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
<?php
$finder = PhpCsFixer\Finder::create()
->exclude('node_modules')
->exclude('vendor')
->in(__DIR__)
->notName('*.blade.php')
->notName('.phpstorm.meta.php')
->notName('_ide_*.php')
;
return PhpCsFixer\Config::create()
->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'array_syntax' => ['syntax' => 'short'],
'array_indentation' => true,
'binary_operator_spaces' => ['operators' => ['=>' => 'align']],
'increment_style' => ['style' => 'post'],
'linebreak_after_opening_tag' => true,
'mb_str_functions' => true,
'no_php4_constructor' => true,
'no_unreachable_default_argument_value' => true,
'no_useless_else' => true,
'no_useless_return' => true,
'not_operator_with_successor_space' => true,
'ordered_imports' => ['sortAlgorithm' => 'length'],
'php_unit_strict' => true,
'phpdoc_order' => true,
'simplified_null_return' => true,
'strict_comparison' => true,
'strict_param' => true,
'header_comment' => ['header' => "This file is part of the TechnicPack Solder Framework.\n\n(c) Syndicate LLC\n\nFor the full copyright and license information, please view the LICENSE\nfile that was distributed with this source code."],
])
->setFinder($finder)
;