格式化所有项目里的所有php文件

  1. 先列出所有php文件,保存到php.txt中。git ls-files |grep \.php$ > php.txt
  2. phpfmt插件目录拷贝fmt.phar到项目根目录。
  3. 保存一下文件为format.sh
#!/bin/bash
while IFS= read -r file
do
    [ -f "$file" ] && php fmt.phar --psr2 --smart_linebreak_after_curly "$file" #php-cs-fixer fix --rules=@PSR2,-phpdoc_align,@Symfony,-unary_operator_spaces --rules='{"concat_space":{"spacing":"one"}}' "$file"
done < "./php.txt"
  1. bash format.sh就好了。

标签:none

已有 5 条评论

  1. 不错不错,我喜欢看

  2. 不错不错,我喜欢看 https://www.237fa.com/

  3. 紧急求购:传奇私服挖矿卖钱脚本大全:https://501h.com/jinbi/20581.html

  4. 《Last Days 坂本龍一 最期 日々》记录片高清在线免费观看:https://www.jgz518.com/xingkong/16793.html

  5. 《拜访小屋》科幻片高清在线免费观看:https://www.jgz518.com/xingkong/84627.html

添加新评论