gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:34:52 26 4
gpt4 key购买 nike

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

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

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

最佳答案

您可以设置 PHP-CS-Fixer 配置文件路径 并设置 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。

关于php - 为 2 个空格而不是 4 个空格配置 PHP-cs-fixer 缩进?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37193540/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com