-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
139 lines (112 loc) · 2.95 KB
/
Copy path.gitignore
File metadata and controls
139 lines (112 loc) · 2.95 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
###########################################################
# Project: MASTER GITIGNORE FILE
# Filename: .gitignore
# Created: 2023-01-20
# Updated: 2025-10-24
# Version: 1.04.02
# Author: Eric L. Hepperle
#
# Purpose:
# Master .gitignore template for personal and project use.
# Copy and modify freely at your own discretion.
#
# Usage:
# Rename this file to ".gitignore" and place in your repo root.
###########################################################
# Table of Contents:
# 1. OS & SYSTEM FILES
# 2. GIT & REPO METADATA
# 3. COMPILED & BINARY FILES
# 4. COMPRESSED & ARCHIVE FILES
# 5. DEPENDENCIES & MODULES
# 6. LOGS, DATABASES & TEMP FILES
# 7. PRIVATE & SENSITIVE DATA
# 8. AUTOMATION & TEST ARTIFACTS
# 9. IDE & EDITOR FILES
# 10. SANDBOXES & TEST FOLDERS
# 11. CUSTOM RULES & EXTENSIONS
# 12. NOTES / KEY
# 13. FOOTER & NOTES
###########################################################
### OS & SYSTEM FILES ######################################
$RECYCLE.BIN/
# Desktop.ini (custom Windows folder icons)
.DS_Store
Thumbs.db
### GIT & REPO METADATA ####################################
.git/
### COMPILED & BINARY FILES ################################
*.com
*.dll
*.exe
*.class
*.o
*.so
### COMPRESSED & ARCHIVE FILES #############################
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
### DEPENDENCIES & MODULES #################################
node_modules/
# vendor/
# __pycache__/
### LOGS, DATABASES & TEMP FILES ##########################
*.log
*.sql
*.sqlite
db/*.sqlite3
log/*.log
log/*.log*
tmp/*
.vagrant
spec/reports
coverage
*.sublime-*
*~
### PRIVATE & SENSITIVE DATA ###############################
private/
*credential*
*private*
token.json
### AUTOMATION & TEST ARTIFACTS ###########################
.gemrc
chef/
public/assets/
test-results/
playwright-report/
blob-report/
playwright/.cache/
### IDE & EDITOR FILES #####################################
.project
**/*.code-workspace
### SANDBOXES & TEST FOLDERS #############################
sb/
_sb/
sandbox/
playground/
junk/
*junk*
### CUSTOM RULES & EXTENSIONS #############################
# Add personal or project-specific ignore patterns here.
# Example:
# screens/
### NOTES / KEY ###########################################
# Explanation of non-obvious patterns:
#
# *~ Files ending with a tilde (~) are typically
# backup or temporary files created by editors.
# *.log All files ending with '.log' are log files.
# node_modules/ Folder containing Node.js dependencies.
# .DS_Store macOS Finder system files to be excluded.
# .vagrant Metadata and state files related to Vagrant.
#
# This section can be expanded as needed without pushing down main rules.
### FOOTER & NOTES ########################################
# This file evolves. For latest version, see:
# https://github.com/codewizard13/ehw-lib/blob/master/site_starters/tmpl__.gitignore
###########################################################