如何创建自定义规则集以通过fix
带有选项的命令运行--rules=@custom
?
像@PSR1
, @PSR2
, @Symfony
, @PHP56Migration
, @PHP70Migration
,一样@PHP71Migration
。
php-cs-fixer 版本:2.2.3
仅通过插入供应商代码 - vendor/friendsofphp/php-cs-fixer/src/RuleSet.php
:
private $setDefinitions = array(
'@custom' => [
'some_custom_fixer` => true,
]
)
RuleSet
按我的预期工作,但是final class
. setDefinitions
使用自定义配置时有没有办法覆盖或扩展.php_cs
?