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

Configure PHP-cs-fixer indentation for 2 spaces rather than 4?

不确定这对这里或 SuperUser 来说是更好的问题。如果它属于那里,请随意移动它。

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

请注意,我将 atom-beautifier 用于 运行 php-cs-fixer,因此理想情况下,任何解决方案都应该可以从那里开始工作。

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

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。