PHP-CS-FIXER忽略了我的配置

时间:2016-12-14 05:00:33

标签: php configuration composer-php psr-2 php-cs-fixer

我在项目的根目录中创建了一个名为.gm_cs的文件,并且全局安装了php-cs-fixer

在配置文件中有以下内容

<?php
 $rules = array(
     '@PSR2' => true,
     'combine_consecutive_unsets' => true,
     'no_extra_consecutive_blank_lines' => array('break', 'continue', 'extra', 'return', 'throw', 'use', 'parenthesis_brace_block', 'square_brace_block', 'curly_brace_block'),
     'no_useless_else' => true,
     'no_useless_return' => true,
     'ordered_class_elements' => true,
     'array_syntax' => array('syntax' => 'short'),
     'ordered_imports' => true,
     'phpdoc_add_missing_param_annotation' => true,
     'psr4' => true,
     'strict_comparison' => true,
     'strict_param' => true,
 );

 $fixers = array(
     '-pre_increment'
 );

 return PhpCsFixer\Config::create()->setRiskyAllowed(false)->setRules($rules)->fixers($fixers)->in(__DIR__);

我使用以下命令从Windows上的git-bash调用命令:
php-cs-fixer fix -vvv ./private --config-file=gm_cs

我也试过这些:
php-cs-fixer fix -vvv ./private --config-file=.gm_cs
php-cs-fixer fix -vvv ./private --config-file=./.gm_cs
php-cs-fixer fix -vvv ./private --config gm_cs
php-cs-fixer fix -vvv ./private --config .gm_cs
php-cs-fixer fix -vvv ./private --config ./.gm_cs
php-cs-fixer fix -vvv ./private --config=gm_cs
php-cs-fixer fix -vvv ./private --config=.gm_cs
php-cs-fixer fix -vvv ./private --config=./.gm_cs

无奈之下,我从作曲家/供应商文件夹中复制了.php_cs

<?php
Symfony\CS\Fixer\Contrib\HeaderCommentFixer::setHeader($header);

return Symfony\CS\Config::create()
    // use default SYMFONY_LEVEL and extra fixers:
    ->fixers(array(
        '-pre_increment',
    ))
    ->finder(
        Symfony\CS\Finder::create()
            ->exclude('Symfony/CS/Tests/Fixtures')
            ->in(__DIR__)
    )
;

将固定器减少到只停止预增量,然后使用前面列出的所有命令运行它,它仍然没有解决问题。

最重要的是,我只是希望它停止将$i++交换为++$i,因为这是我继承的一个大型项目,我没有时间测试所有这些更改(尚未进行单元测试)。

非常感谢任何人提供的任何建议或帮助。

2 个答案:

答案 0 :(得分:3)

原来我使用的php-cs-fixer版本是Symfony\CS\Fixer\版本,而$rules版本没有。

此外,该文件需要命名为.php_cs

答案 1 :(得分:1)

Symfony独立示例:http://www.inanzzz.com/index.php/post/m9yq/creating-a-standalone-composer-json-library-or-package

<强> .php_cs

return PhpCsFixer\Config::create()
    ->setUsingCache(false)
    ->setRules([
        'array_syntax' => ['syntax' => 'short'],
        'ordered_imports' => true,
    ])
    ->setFinder(
        PhpCsFixer\Finder::create()
            ->exclude(['bin', 'vendor'])
            ->in(__DIR__)
    );

依赖Symfony的例子:

<强> .php_cs

$finder = Symfony\CS\Finder::create()
    ->exclude(['app', 'spec', 'build', 'bin', 'web', 'vendor'])
    ->in(__DIR__);

return  Symfony\CS\Config::create()
    ->fixers(['short_array_syntax', '-phpdoc_align', 'ordered_use'])
    ->finder($finder);

没有 .php_cs 文件的示例:

$ bin/php-cs-fixer fix src --fixers=short_array_syntax