Skip to content

약속 | 코드 컨벤션

JiYoung Park edited this page Oct 20, 2023 · 7 revisions

🤞🏻 코드 컨벤션

코드는 Swift API GuideLine 에 따라 작성합니다.

SwiftLint 적용

disabled_rules:
# 기본적으로 설정된 룰 중에 비활성화 시키고 싶은 룰들
- trailing_whitespace
- colon
- comma
- control_statement
- identifier_name
- line_length

opt_in_rules:
# 기본적으로 설정되지 않은 룰 중에 활성화 시키고 싶은 룰들

included:
# 검사에 포함할 파일 경로

excluded:
#검사에서 제외할 대상
- Application/*
- Codingdong-iOSTests/*
- Codingdong-iOSUITests/*


function_body_length:
# From: https://realm.github.io/SwiftLint/function_body_length.html
    error: 200

line_length:
# From https://realm.github.io/SwiftLint/line_length.html
    error: 240