Add additional rules

This commit is contained in:
Nabeel Shahzad
2019-05-12 17:25:52 -05:00
parent 88957f4071
commit 8d6621e2a8
2 changed files with 24 additions and 5 deletions

27
.php_cs
View File

@@ -10,12 +10,31 @@ return PhpCsFixer\Config::create()
->setRiskyAllowed(true)
->setRules(
[
'@PSR2' => true,
'strict_param' => true,
'array_syntax' => ['syntax' => 'short'],
'binary_operator_spaces' => [
'@PSR2' => true,
'strict_param' => true,
'no_php4_constructor' => true,
'no_extra_blank_lines' => true,
'no_superfluous_elseif' => true,
'single_line_comment_style' => false,
'phpdoc_summary' => false,
'phpdoc_no_empty_return' => false,
'simple_to_complex_string_variable' => true,
'array_syntax' => [
'syntax' => 'short',
],
'binary_operator_spaces' => [
'align_double_arrow' => true,
],
'blank_line_before_statement' => [
'statements' => [
'declare',
'if',
'for',
'return',
'throw',
'try',
],
],
]
)
->setFinder($finder);

View File

@@ -70,7 +70,7 @@ test:
.PHONY: phpcs
phpcs:
@vendor/bin/php-cs-fixer fix --config=.php_cs -v --dry-run --diff
@vendor/bin/php-cs-fixer fix --config=.php_cs -v --diff --dry-run
.PHONY:
phpstan: