我使用vim-php-cs-fixer修复我的php代码,php-cs-fixer是由作曲家安装的ver.2.9。
如果我调用PhpCsFixerFixFile(),则会发生错误。
您正在运行启用了xdebug的PHP CS Fixer。这有一个专业 对运行时性能的影响。
如果您在解决警告时需要帮助,请在https://gitter.im/PHP-CS-Fixer询问,我们会帮助您!
" - 级别"选项不存在。
修复[--path-mode PATH-MODE] [ - allow-risky ALLOW-RISKY] [--config CONFIG] [--dry-run] [--rules RULES] [ - using-cache USING -CACHE] [ - cache-file CACHE-FILE] [--diff] [--diff-format DIFF-FORMAT] [--format FORMAT] [--stop-on-violation] [ - show-progress SHOW -PROGRESS] [ - ] [] ......
我尝试了php-cs-fixer ver.1。*,我成功修复了文件。
但是ver.2。*,我没能解决。
这是我的vim-php-cs-fixer设置
let g:php_cs_fixer_path = "~/.config/composer/vendor/bin/php-cs-fixer" " define the path to the php-cs-fixer.phar
let g:php_cs_fixer_enable_default_mapping = 1 " Enable the mapping by default (<leader>pcd)
let g:php_cs_fixer_php_path = "php"
let g:php_cs_fixer_rules = "@PSR2"
我没有设置级别选项,但会出现级别错误。 为什么呢?