코딩 컨벤션 - boostcampwm2023/iOS05-Village GitHub Wiki

BE

데이터베이스 명명 규칙 (Naming Conventions)

iOS

API Design Guidelines

  • SwiftLint 적용
# 기본 적용되는 룰에서 사용하지 않는 룰
disabled_rules:
    - trailing_whitespace # 후행 공백
    - file_length
    
# 식별자 네이밍 커스텀 정의
identifier_name:
    min_length: 2

# 룰 적용 제외할 파일
excluded:
    - Village/Application/AppDelegate.swift
    - Village/Application/SceneDelegate.swift
  • CleanCode 지향