Objective-C 代码格式化
2020-02-14 本文已影响0人
yxibng
参考文章:
-
clone
# 进入一个目录DIR,clone 工程 cd $DIR git clone https://github.com/square/spacecommander.git
-
setup formatter in your repo
# 进入自己的工程目录,初始化配置 cd $YOUR_REPO bash $DIR/spacecommander/setup-repo.sh
-
add alias to
.zshrc
or.bash_profile
,添加别名,方便调用# 初始化 alias clangformatsetup="$DIR/spacecommander/setup-repo.sh" # 格式化对应文件 alias clangformatfile="$DIR/spacecommander/format-objc-file.sh" # 格式化所有暂存文件 alias clangformatfiles="$DIR/spacecommander/format-objc-files.sh" # 格式化整个仓库 alias clangformatall="$DIR/spacecommander/format-objc-files-in-repo.sh