当前位置: 首页 > 工具软件 > PHP CS Fixer > 使用案例 >

php cs fixer config,php cs fixer,如何运行有风险的规则?

袁鸿畴
2023-12-01

PHP-CS-FIXER

嗨,我第一次使用php-cs-fixer.我知道我们必须设置一个.php_cs.dist文件

这是我从php-cs-fixer的git存储库获取的示例文件.

$finder = PhpCsFixer\Finder::create()

->exclude('somedir')

->in(__DIR__);

return PhpCsFixer\Config::create()

->setRules(array(

'@Symfony' => true,

'full_opening_tag' => false,

))

->setFinder($finder);

当我在CLI上运行此命令时

php-cs-fixer fix –config = .php_cs.dist –allow-risky

这是说我需要给出 – 允许风险的选项,但在文档中没有提及如何设置允许风险的选项帮助我的人.越快越好.

我的问题

如何运行风险规则?因为没有提到如何在php-cs-fixer中使用允许冒险的规则.

 类似资料: