-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitignore
85 lines (62 loc) · 1.27 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
### Node ###
# Logs
logs
*.log
npm-debug.log*
# node-waf 구성
.lock-wscript
# 컴파일 된 바이너리 추가 기능(http://nodejs.org/api/addons.html)
build/Release
# 의존성 모듈 디렉토리
node_modules
jspm_packages
# NPM 캐시 디렉토리(옵션)
.npm
# ESLint 캐시(옵션)
.eslintcache
# REPL 히스토리(옵션)
.node_repl_history
# 'npm pack' 출력
*.tgz
# Yarn 무결성 파일
.yarn-integrity
# Nuxt 빌드
.nuxt
# Nuxt 제너레이트
dist
# Grunt 중개 스토리지 (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# ------------------------------
### OSX ###
*.DS_Store
.AppleDouble
.LSOverride
# 아이콘(Icon)
Icon
# 썸네일(Thumbnails)
._*
# 드라이브 볼륨 root에 나타날 수 있는 파일들
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# 원격 AFP 공유에 잠재적으로 생성 된 디렉토리
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# 런타임 데이터
pids
*.pid
*.seed
*.pid.lock
# jscoverage/JSCover에 의해 생성 된 라이브러리 디렉토리
lib-cov
# 이스탄불(istanbul)과 같은 도구에서 사용되는 커버리지 디렉토리
coverage
# nyc 테스트 커버리지
.nyc_output