Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Xcode 中有没有办法在工作区中的多个项目之间共享运行脚本构建阶段?
我正在使用SwiftLint来强制执行编码样式,但我不想手动将必要的运行脚本添加到我的 Xcode 项目中的所有项目(我维护的,而不是第 3 方)。
我找到了一个解决方案,但它是特定于 SwiftLint 的解决方案,而不是任何运行脚本。
我似乎工作正常的解决方案是选择我通常要构建的任何目标,并且只为该目标放置运行脚本,但让运行脚本指定--path为一个目录。由于 SwiftLint 在所有子目录中递归运行,因此工作正常:
--path
swiftlint lint --path "$SRCROOT"/..