CodingTest/.gitignore
SEAN-59 142d979bc8 init
Swift 프로젝트 변경
2025-10-16 19:27:02 +09:00

71 lines
1.0 KiB
Plaintext

# CodingTest
# MAC TRASH
._*
# macOS
.DS_Store
# Build generated
build/
DerivedData/
# Xcode
xcuserdata/
*.xcscheme
*.moved-aside
*.xcuserstate
*.xcworkspace
# Swift Package Manager
.build/
Packages/
*.resolved
# Cocoapods
Pods/
# Carthage
Carthage/
# User-specific settings
*.user
# Playgrounds
timeline.xctimeline
playground.xcworkspace
# Virtual Environments
# 가상 환경 폴더는 개인 PC의 패키지들이 설치되는 곳이므로 절대 공유하면 안 됩니다.
.venv/
venv/
env/
virtualenv/
# IDE and Editor Folders
# PyCharm, VS Code 등의 개인 설정 폴더입니다.
.idea/
.vscode/
# Python cache and bytecode
# 파이썬이 실행 속도를 높이기 위해 자동으로 생성하는 파일들입니다.
__pycache__/
*.pyc
*.pyo
*.pyd
# Build and distribution artifacts
# 패키지 빌드 시 생성되는 결과물 폴더입니다.
build/
dist/
*.egg-info/
*.egg
# Testing
# 테스트 도구가 생성하는 캐시 및 리포트 파일입니다.
.pytest_cache/
.coverage
htmlcov/
.tox/