mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00

* add DashboardCard component * add instance wide podcasts and episodes numbers * add app.storageLimit environment variable * divide bytes by 1000 instead of 1024 in stats sql queries closes #216
61 lines
1.9 KiB
PHP
61 lines
1.9 KiB
PHP
<?php
|
|
|
|
use PhpCsFixer\Fixer\Whitespace\IndentationTypeFixer;
|
|
use Symplify\CodingStandard\Fixer\Naming\StandardizeHereNowDocKeywordFixer;
|
|
use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
|
|
use Symplify\CodingStandard\Fixer\LineLength\LineLengthFixer;
|
|
use PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis\AssignmentInConditionSniff;
|
|
use PhpCsFixer\Fixer\StringNotation\SingleQuoteFixer;
|
|
use Symplify\EasyCodingStandard\Config\ECSConfig;
|
|
|
|
return static function (ECSConfig $ecsConfig): void {
|
|
// alternative to CLI arguments, easier to maintain and extend
|
|
$ecsConfig->paths([
|
|
__DIR__ . '/app',
|
|
__DIR__ . '/modules',
|
|
__DIR__ . '/themes',
|
|
__DIR__ . '/tests',
|
|
__DIR__ . '/public',
|
|
]);
|
|
|
|
$ecsConfig->skip([
|
|
// skip specific generated files
|
|
__DIR__ . '/modules/Admin/Language/*/PersonsTaxonomy.php',
|
|
|
|
StandardizeHereNowDocKeywordFixer::class => [
|
|
__DIR__ . '/app/Views/Components/*',
|
|
__DIR__ . '/modules/**/Views/Components/*',
|
|
__DIR__ . '/themes/**/Views/Components/*',
|
|
__DIR__ . '/app/Helpers/components_helper.php'
|
|
],
|
|
|
|
LineLengthFixer::class => [
|
|
__DIR__ . '/app/Views/*',
|
|
__DIR__ . '/modules/**/Views/*',
|
|
__DIR__ . '/themes/*',
|
|
],
|
|
|
|
IndentationTypeFixer::class => [
|
|
__DIR__ . '/app/Views/*',
|
|
__DIR__ . '/modules/**/Views/*',
|
|
__DIR__ . '/themes/*',
|
|
],
|
|
|
|
// crowdin enforces its own style for translation files
|
|
// remove SingleQuoteFixer for Language files to prevent conflicts
|
|
SingleQuoteFixer::class => [
|
|
__DIR__ . '/app/Language/*',
|
|
__DIR__ . '/modules/**/Language/*'
|
|
],
|
|
|
|
AssignmentInConditionSniff::class,
|
|
]);
|
|
|
|
$ecsConfig->sets([
|
|
SetList::PSR_12,
|
|
SetList::SYMPLIFY,
|
|
SetList::COMMON,
|
|
SetList::CLEAN_CODE
|
|
]);
|
|
};
|