This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next-11614/add-code-tooling' into 'master'
NEXT-11614 - Add code style check and static analysis to pipeline See merge request shopware/6/product/development!216
- Loading branch information
Showing
6 changed files
with
156 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use PhpCsFixer\Fixer\CastNotation\ModernizeTypesCastingFixer; | ||
use PhpCsFixer\Fixer\ClassNotation\ClassAttributesSeparationFixer; | ||
use PhpCsFixer\Fixer\ClassNotation\SelfAccessorFixer; | ||
use PhpCsFixer\Fixer\FunctionNotation\MethodArgumentSpaceFixer; | ||
use PhpCsFixer\Fixer\FunctionNotation\NullableTypeDeclarationForDefaultNullValueFixer; | ||
use PhpCsFixer\Fixer\FunctionNotation\SingleLineThrowFixer; | ||
use PhpCsFixer\Fixer\FunctionNotation\VoidReturnFixer; | ||
use PhpCsFixer\Fixer\LanguageConstruct\ExplicitIndirectVariableFixer; | ||
use PhpCsFixer\Fixer\Operator\ConcatSpaceFixer; | ||
use PhpCsFixer\Fixer\Phpdoc\GeneralPhpdocAnnotationRemoveFixer; | ||
use PhpCsFixer\Fixer\Phpdoc\NoSuperfluousPhpdocTagsFixer; | ||
use PhpCsFixer\Fixer\Phpdoc\PhpdocOrderFixer; | ||
use PhpCsFixer\Fixer\Phpdoc\PhpdocSummaryFixer; | ||
use PhpCsFixer\Fixer\PhpTag\BlankLineAfterOpeningTagFixer; | ||
use PhpCsFixer\Fixer\PhpUnit\PhpUnitConstructFixer; | ||
use PhpCsFixer\Fixer\PhpUnit\PhpUnitDedicateAssertFixer; | ||
use PhpCsFixer\Fixer\PhpUnit\PhpUnitDedicateAssertInternalTypeFixer; | ||
use PhpCsFixer\Fixer\PhpUnit\PhpUnitMockFixer; | ||
use PhpCsFixer\Fixer\PhpUnit\PhpUnitMockShortWillReturnFixer; | ||
use PhpCsFixer\Fixer\PhpUnit\PhpUnitTestCaseStaticMethodCallsFixer; | ||
use PhpCsFixer\Fixer\ReturnNotation\NoUselessReturnFixer; | ||
use PhpCsFixer\Fixer\Strict\DeclareStrictTypesFixer; | ||
use PhpCsFixer\Fixer\StringNotation\ExplicitStringVariableFixer; | ||
use PhpCsFixer\Fixer\Whitespace\BlankLineBeforeStatementFixer; | ||
use PhpCsFixer\Fixer\Whitespace\CompactNullableTypehintFixer; | ||
use PhpCsFixerCustomFixers\Fixer\NoImportFromGlobalNamespaceFixer; | ||
use PhpCsFixerCustomFixers\Fixer\NoSuperfluousConcatenationFixer; | ||
use PhpCsFixerCustomFixers\Fixer\NoUselessCommentFixer; | ||
use PhpCsFixerCustomFixers\Fixer\NoUselessParenthesisFixer; | ||
use PhpCsFixerCustomFixers\Fixer\NoUselessStrlenFixer; | ||
use PhpCsFixerCustomFixers\Fixer\OperatorLinebreakFixer; | ||
use PhpCsFixerCustomFixers\Fixer\PhpdocNoIncorrectVarAnnotationFixer; | ||
use PhpCsFixerCustomFixers\Fixer\SingleSpaceAfterStatementFixer; | ||
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; | ||
use Symplify\CodingStandard\Fixer\ArrayNotation\ArrayListItemNewlineFixer; | ||
use Symplify\CodingStandard\Fixer\ArrayNotation\ArrayOpenerAndCloserNewlineFixer; | ||
use Symplify\EasyCodingStandard\ValueObject\Option; | ||
use Symplify\EasyCodingStandard\ValueObject\Set\SetList; | ||
|
||
return static function (ContainerConfigurator $containerConfigurator): void { | ||
$services = $containerConfigurator->services(); | ||
|
||
$services->set(ModernizeTypesCastingFixer::class); | ||
$services->set(ClassAttributesSeparationFixer::class) | ||
->call('configure', [['elements' => ['property', 'method']]]); | ||
$services->set(MethodArgumentSpaceFixer::class) | ||
->call('configure', [['on_multiline' => 'ensure_fully_multiline']]); | ||
$services->set(NullableTypeDeclarationForDefaultNullValueFixer::class); | ||
$services->set(VoidReturnFixer::class); | ||
$services->set(ConcatSpaceFixer::class) | ||
->call('configure', [['spacing' => 'one']]); | ||
$services->set(GeneralPhpdocAnnotationRemoveFixer::class) | ||
->call('configure', [['annotations' => ['copyright', 'category']]]); | ||
$services->set(NoSuperfluousPhpdocTagsFixer::class) | ||
->call('configure', [['allow_unused_params' => true]]); | ||
$services->set(PhpdocOrderFixer::class); | ||
$services->set(PhpUnitConstructFixer::class); | ||
$services->set(PhpUnitDedicateAssertFixer::class) | ||
->call('configure', [['target' => 'newest']]); | ||
$services->set(PhpUnitDedicateAssertInternalTypeFixer::class); | ||
$services->set(PhpUnitMockFixer::class); | ||
$services->set(PhpUnitMockShortWillReturnFixer::class); | ||
$services->set(PhpUnitTestCaseStaticMethodCallsFixer::class); | ||
$services->set(NoUselessReturnFixer::class); | ||
$services->set(DeclareStrictTypesFixer::class); | ||
$services->set(BlankLineBeforeStatementFixer::class); | ||
$services->set(CompactNullableTypehintFixer::class); | ||
$services->set(NoImportFromGlobalNamespaceFixer::class); | ||
$services->set(NoSuperfluousConcatenationFixer::class); | ||
$services->set(NoUselessCommentFixer::class); | ||
$services->set(OperatorLinebreakFixer::class); | ||
$services->set(PhpdocNoIncorrectVarAnnotationFixer::class); | ||
$services->set(SingleSpaceAfterStatementFixer::class); | ||
$services->set(NoUselessParenthesisFixer::class); | ||
$services->set(NoUselessStrlenFixer::class); | ||
|
||
$parameters = $containerConfigurator->parameters(); | ||
|
||
$parameters->set(Option::SETS, [ | ||
SetList::SYMFONY, | ||
SetList::ARRAY, | ||
SetList::CONTROL_STRUCTURES, | ||
SetList::STRICT, | ||
SetList::PSR_12, | ||
]); | ||
|
||
$parameters->set(Option::SKIP, [ | ||
ArrayOpenerAndCloserNewlineFixer::class => null, | ||
ArrayListItemNewlineFixer::class => null, | ||
SingleLineThrowFixer::class => null, | ||
SelfAccessorFixer::class => null, | ||
ExplicitIndirectVariableFixer::class => null, | ||
BlankLineAfterOpeningTagFixer::class => null, | ||
PhpdocSummaryFixer::class => null, | ||
ExplicitStringVariableFixer::class => null, | ||
]); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0"?> | ||
<psalm | ||
resolveFromConfigFile="true" | ||
ensureArrayStringOffsetsExist="true" | ||
findUnusedVariablesAndParams="true" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="https://getpsalm.org/schema/config" | ||
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd" | ||
> | ||
<projectFiles> | ||
<directory name="src" /> | ||
<ignoreFiles> | ||
<directory name="vendor" /> | ||
</ignoreFiles> | ||
</projectFiles> | ||
|
||
<issueHandlers> | ||
<PropertyNotSetInConstructor> | ||
<errorLevel type="info"> | ||
<file name="src/HttpKernel.php"/> | ||
</errorLevel> | ||
</PropertyNotSetInConstructor> | ||
</issueHandlers> | ||
</psalm> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters