Merge pull request 'add_ClassAttributeSeparationFixer' (#3) from add_ClassAttributeSeparationFixer into main
All checks were successful
/ ls (push) Successful in 13s
All checks were successful
/ ls (push) Successful in 13s
Reviewed-on: #3
This commit is contained in:
commit
2793c36fa9
3 changed files with 17 additions and 5 deletions
|
@ -10,15 +10,16 @@ jobs:
|
|||
REPO: '${{ github.repository }}'
|
||||
TOKEN: '${{ secrets.GITHUB_TOKEN }}'
|
||||
GIT_SERVER: 'git.php.fail'
|
||||
COMPOSER_CACHE_DIR: /opt/hostedtoolcache/.composer/cache/files
|
||||
run: |
|
||||
git clone --branch $GITHUB_REF_NAME https://${TOKEN}@${GIT_SERVER}/${REPO}.git .
|
||||
git fetch
|
||||
git checkout ${{ github.head_ref }}
|
||||
- name: create composer cache dir
|
||||
- name: composer install
|
||||
env:
|
||||
COMPOSER_CACHE_DIR: /opt/hostedtoolcache/.composer/cache/files
|
||||
run: |
|
||||
mkdir -p /opt/hostedtoolcache/.composer/cache/files
|
||||
- run: composer install
|
||||
mkdir -p ${{ env.COMPOSER_CACHE_DIR }}
|
||||
composer install
|
||||
- run: composer lint
|
||||
- name: GIT commit and push all changed files
|
||||
env:
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<?php declare(strict_types=1);
|
||||
|
||||
use PhpCsFixer\Fixer\ClassNotation\ClassAttributesSeparationFixer;
|
||||
use PhpCsFixer\Fixer\Import\OrderedImportsFixer;
|
||||
use PhpCsFixer\Fixer\LanguageConstruct\FunctionToConstantFixer;
|
||||
use PhpCsFixer\Fixer\Operator\NewWithBracesFixer;
|
||||
|
@ -77,6 +78,17 @@ return ECSConfig::configure()
|
|||
]
|
||||
)
|
||||
->withConfiguredRule(
|
||||
ClassAttributesSeparationFixer::class,
|
||||
[
|
||||
'elements' => [
|
||||
'const' => 'none',
|
||||
'method' => 'one',
|
||||
'property' => 'none',
|
||||
'trait_import' => 'none',
|
||||
'case' => 'none',
|
||||
],
|
||||
],
|
||||
)->withConfiguredRule(
|
||||
DeclareStrictTypesSniff::class,
|
||||
[
|
||||
'declareOnFirstLine' => true,
|
||||
|
|
|
@ -5,6 +5,5 @@ namespace Lubiana\CodeQuality;
|
|||
final class LubiSetList
|
||||
{
|
||||
public const string RECTOR = __DIR__ . '/../config/rector.php';
|
||||
|
||||
public const string ECS = __DIR__ . '/../config/ecs.php';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue