mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-11-30 04:39:48 +01:00
53 lines
1.7 KiB
PHP
53 lines
1.7 KiB
PHP
<?php
|
|
|
|
return PhpCsFixer\Config::create()
|
|
->setFinder(
|
|
\Symfony\Component\Finder\Finder::create()
|
|
->in([
|
|
__DIR__ . '/src',
|
|
__DIR__ . '/tests',
|
|
])
|
|
)
|
|
->setRiskyAllowed(true)
|
|
->setRules([
|
|
'align_multiline_comment' => true,
|
|
'array_indentation' => true,
|
|
'declare_strict_types' => true,
|
|
// Currently it is not possible to mark all classes as final (exceptions etc.)
|
|
// We can run this fixer periodically on the tests folder only.
|
|
// 'final_class' => true,
|
|
'global_namespace_import' => [
|
|
'import_classes' => true,
|
|
'import_constants' => true,
|
|
'import_functions' => true,
|
|
],
|
|
'list_syntax' => [
|
|
'syntax' => 'short',
|
|
],
|
|
'lowercase_constants' => true,
|
|
'multiline_comment_opening_closing' => true,
|
|
'native_function_casing' => true,
|
|
'no_empty_phpdoc' => true,
|
|
'no_leading_import_slash' => true,
|
|
'no_superfluous_phpdoc_tags' => [
|
|
'allow_mixed' => true,
|
|
],
|
|
'no_unused_imports' => true,
|
|
'no_useless_else' => true,
|
|
'no_useless_return' => true,
|
|
'ordered_imports' => [
|
|
'imports_order' => ['class', 'function', 'const'],
|
|
],
|
|
'ordered_interfaces' => true,
|
|
'php_unit_test_annotation' => true,
|
|
'php_unit_test_case_static_method_calls' => [
|
|
'call_type' => 'static',
|
|
],
|
|
'single_import_per_statement' => true,
|
|
'single_trait_insert_per_statement' => true,
|
|
'static_lambda' => true,
|
|
'strict_comparison' => true,
|
|
'strict_param' => true,
|
|
])
|
|
;
|