-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
89 lines (75 loc) · 1.4 KB
/
.gitignore
File metadata and controls
89 lines (75 loc) · 1.4 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
# ----------------------------
# OS Specific (Windows)
# ----------------------------
Thumbs.db
Desktop.ini
# ----------------------------
# VS Code (track team config only)
# ----------------------------
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.vscode-server/
*.code-workspace.user
# ----------------------------
# PowerShell
# ----------------------------
# PSScriptAnalyzer user overrides
PSScriptAnalyzerSettings.psd1.user
# Transcripts
PowerShell_transcript*.txt
# Extension/cache byproducts
*.ps1.cache
*.psd1.cache
*.psm1.cache
# ----------------------------
# Pester / Test output
# ----------------------------
**/TestResults/
testResults.xml
*.TestResults.xml
*.trx
*.nunit.xml
*.junit.xml
# Coverage outputs
coverage.xml
**/coverage*/
codecoverage*.xml
*.cobertura.xml
# Pester cache
.pester/
# ----------------------------
# Build / artifact output
# ----------------------------
Output/
Logs/
Reports/
# ----------------------------
# Logs (generic)
# ----------------------------
*.log
# ----------------------------
# Secrets & Credentials (local-only)
# ----------------------------
.env
.env.*
.env.local
.env.*.local
*.secrets.json
*.private.json
*-credentials.json
*.azureauth
sp-*.json
ServicePrincipal.json
# ----------------------------
# Temporary & editor junk
# ----------------------------
*.tmp
*.temp
*.bak
*.swp
*~
*.orig
*.rej