为2个空格而不是4个空格配置PHP-cs-fixer缩进?

时间:2016-05-12 17:18:20

标签: php atom-editor phpcs

不确定这是一个更好的问题,还是超级用户。如果它属于那里,可随意移动它。

我使用php-cs-fixer,我对缩进有一个独特的要求 - 我需要两个空格而不是四个空格。有没有办法改变这个设置?

请注意,我使用atom-beautifier来运行php-cs-fixer,因此理想情况下任何解决方案都应该可行。

1 个答案:

答案 0 :(得分:5)

您可以设置PHP-CS-Fixer config file path并设置PHP-CS-Fixer的documentation网站中定义的setIndent()值。

See image for Atom package settings

使用类似的设置.php_cs注意 ->setIndent(" ")有两个空格而不是\t个字符。

<?php

/*
 * This file is part of PHP CS Fixer.
 * (c) Fabien Potencier <fabien@symfony.com>
 *     Dariusz Rumiński <dariusz.ruminski@gmail.com>
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE.
 */

$header = <<<'EOF'
This file is part of PHP CS Fixer.
(c) Fabien Potencier <fabien@symfony.com>
    Dariusz Rumiński <dariusz.ruminski@gmail.com>
This source file is subject to the MIT license that is bundled
with this source code in the file LICENSE.
EOF;

return PhpCsFixer\Config::create()
  /* ... other settings */
  ->setIndent("  ")
  /* ... other settings */

我在这里使用php-cs-fixer插件版本4.1.0。