-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
107 lines (85 loc) · 4.34 KB
/
.gitignore
File metadata and controls
107 lines (85 loc) · 4.34 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# ============================================
# Build artifacts
# ============================================
**/bin/
**/obj/
# NuGet
**/packages/
*.nupkg
project.lock.json
project.assets.json
# Visual Studio
.vs/
*.user
*.suo
*.cache
# Debugging / intermediate
*.pdb
*.ilk
*.idb
*.tlog
*.log
# Backup / temp
*.tmp
*.bak
*.old
~$*
# ============================================
# JavaScript protection (scoped, not global)
# ============================================
# Proprietary JS lives only in Test_Data
Test_Data/**/*.js
# Guard JS inside BuildTools; allow only the JSLint test
BuildTools/**/*.js
!BuildTools/jsl-test.js
# Explicitly allow JS in documentation output
!docs/**/*.js
!docfx_project/**/*.js
# ============================================
# BuildTools junction protection
# ============================================
# Ignore everything under BuildTools by default
BuildTools/**
# Allow the curated toolchain
!BuildTools/AssemblyInfoUtil.exe
!BuildTools/AssemblyInfoUtil.exe.config
!BuildTools/AssemblyInfoUtil.pdb
!BuildTools/AssemblyInfoUtil.xml
!BuildTools/ConsoleColors.CMD
!BuildTools/ConsoleDiag.CMD
!BuildTools/ConsoleFormat.CMD
!BuildTools/ConsoleLib.CMD
!BuildTools/ConsoleVT.CMD
!BuildTools/ListDelta.exe
!BuildTools/ListDelta.exe.config
!BuildTools/ListDelta.pdb
!BuildTools/VTProbe.exe
!BuildTools/VTProbe.pdb
!BuildTools/XCopyD.CMD
!BuildTools/XcopyDestIsDir.TXT
!BuildTools/XcopyDestIsFile.TXT
!BuildTools/XCOPYF.CMD
!BuildTools/7UP.CMD
# Allow the JSLint test file
!BuildTools/jsl-test.js
# ============================================
# Directories that must remain visible
# ============================================
# DocFX output (published to GitHub Pages)
!docs/
!docfx_project/
# Test artifacts
!Test_Data/
!Test_Reports/
Test_Data/*.js
# ============================================
# Respect per-directory .gitignore files
# (These directories already manage their own exclusions)
# ============================================
# _archive/
# _NOTES/
# 64Bit_Native/
# DLLServices2/
# Redirected_Streams/
# REFERENCE/
# StandardHandlesLab/