-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
191 lines (160 loc) · 2.87 KB
/
.gitignore
File metadata and controls
191 lines (160 loc) · 2.87 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# =========================
# ArchModule .gitignore
# =========================
# -----------------------------
# PowerShell Module Artifacts
# -----------------------------
*.ps1xml
*.psc1
# Build outputs
/Output/
/bin/
/obj/
/publish/
# -----------------------------
# Temporary & Cache Files
# -----------------------------
*.tmp
*.temp
*.bak
*.swp
*~
.DS_Store
Thumbs.db
# Log files
*.log
# Error/Debug files
*.error
*.error-file.txt
*Error-file.txt
*.NEW.Error-file.txt
# -----------------------------
# Local Data Files
# -----------------------------
# Note: ArchFiles.csv is intentionally tracked
# Exclude other generated CSVs that are created locally
#**/FilesToDel.*.csv
#**/Test-NewFiles.csv
#**/Test-NewFiles.tmp.csv
#Remove-Stuffs.local.csv
#Replace-Replacements.local.csv
# -----------------------------
# Credentials & Secrets
# -----------------------------
*.credentials
*.secret
**/secrets/
.env
.env.local
appsettings.json
appsettings.*.json
**/Config/*.local.psd1
**/Config/*.user.psd1
# Azure credentials
.azure/
*.publishsettings
*.azureProfile
# AWS credentials
.aws/
credentials
# -----------------------------
# User-Specific Paths
# -----------------------------
# Exclude local path configurations
**/Local/**
**/Temp/**
**/__local__/**
# -----------------------------
# IDE & Editor Files
# -----------------------------
# Visual Studio Code
.vscode/
!.vscode/settings.json.example
!.vscode/extensions.json
*.code-workspace
# Visual Studio
.vs/
*.suo
*.user
*.userosscache
*.sln.docstates
# JetBrains IDEs (Rider, IntelliJ, etc.)
.idea/
*.iml
# PowerShell ISE
*.ISEAutoSave*
# Cursor IDE
.cursor/
# -----------------------------
# Testing & Coverage
# -----------------------------
# Pester test results
TestResults/
*TestResults*.xml
coverage.xml
*.coverage
# Code coverage
.coverage/
coverage/
# -----------------------------
# Package Management
# -----------------------------
# PSDepend
.psdepend/
# Paket
.paket/
paket-files/
# NuGet
*.nupkg
packages/
!packages/repositories.config
# -----------------------------
# Documentation Build
# -----------------------------
docs/_site/
docs/.cache/
mkdocs/site/
# -----------------------------
# Operating System Files
# -----------------------------
# Windows
Desktop.ini
$RECYCLE.BIN/
*.lnk
*.stackdump
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
# Linux
*~
.directory
.Trash-*
# -----------------------------
# Archive/Backup Files
# -----------------------------
*.zip
*.tar
*.gz
*.7z
*.rar
!**/Examples/*.zip
# Old/archived versions
*.old
*.orig
**/*.backup
# -----------------------------
# Project-Specific
# -----------------------------
# WIP folder (if you want to ignore it)
# Uncomment the line below if WIP files shouldn't be tracked
# WIP/
# Archive folder - keeping old versions
# Archive/
# Local test directories
**/TestData/
**/SampleFiles/
# Generated directory trees
**/DirTree.txt
**/TorrentDirTree.txt