Add Package Dependencies > https://github.com/SimplyDanny/SwiftLintPlugins
붙여넣기
❗️주의 : Compile Sources 항목 밑에 있어야함
if which swiftlint >/dev/null; then
swiftlint
else
echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
fi
.swiftlint.yml 파일내용
disabled_rules:
- line_length
- trailing_whitespace
잘된 것.