WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
File tree Expand file tree Collapse file tree 1 file changed +194
-0
lines changed
Expand file tree Collapse file tree 1 file changed +194
-0
lines changed Original file line number Diff line number Diff line change 1+ # Distribution and Environment
2+ dist/*
3+ build/*
4+ venv/*
5+ env/*
6+ *.env
7+ .env.*
8+ virtualenv/*
9+ .python-version
10+ .ruby-version
11+ .node-version
12+
13+ # Logs and Temporary Files
14+ *.log
15+ *.tsv
16+ *.csv
17+ *.txt
18+ tmp/*
19+ temp/*
20+ .tmp/*
21+ *.temp
22+ *.cache
23+ .cache/*
24+ logs/*
25+
26+ # Sensitive Data
27+ *.json
28+ *.xml
29+ *.yml
30+ *.yaml
31+ *.properties
32+ properties.json
33+ *.sqlite
34+ *.sqlite3
35+ *.dbsql
36+ secrets.*
37+ *secret*
38+ *password*
39+ *credential*
40+ .npmrc
41+ .yarnrc
42+ .aws/*
43+ .config/*
44+
45+ # Credentials and Keys
46+ *.pem
47+ *.ppk
48+ *.key
49+ *.pub
50+ *.p12
51+ *.pfx
52+ *.htpasswd
53+ *.keystore
54+ *.jks
55+ *.truststore
56+ *.cer
57+ id_rsa*
58+ known_hosts
59+ authorized_keys
60+ .ssh/*
61+ .gnupg/*
62+ .pgpass
63+
64+ # Config Files
65+ *.conf
66+ *.toml
67+ *.ini
68+ .env.local
69+ .env.development
70+ .env.test
71+ .env.production
72+ config/*
73+
74+ # Documentation and Notes
75+ *.md
76+ *.mdx
77+ *.rst
78+ *.txt
79+ docs/*
80+ README*
81+ CHANGELOG*
82+ LICENSE*
83+ CONTRIBUTING*
84+
85+ # Database Files
86+ *.sql
87+ *.db
88+ *.dmp
89+ *.dump
90+ *.backup
91+ *.restore
92+ *.mdb
93+ *.accdb
94+ *.realm*
95+
96+ # Backup and Archive Files
97+ *.bak
98+ *.backup
99+ *.swp
100+ *.swo
101+ *.swn
102+ *~
103+ *.old
104+ *.orig
105+ *.archive
106+ *.gz
107+ *.zip
108+ *.tar
109+ *.rar
110+ *.7z
111+
112+ # Compiled and Binary Files
113+ *.pyc
114+ *.pyo
115+ **/__pycache__/**
116+ *.class
117+ *.jar
118+ *.war
119+ *.ear
120+ *.dll
121+ *.exe
122+ *.so
123+ *.dylib
124+ *.bin
125+ *.obj
126+
127+ # IDE and Editor Files
128+ .idea/*
129+ *.iml
130+ .vscode/*
131+ .project
132+ .classpath
133+ .settings/*
134+ *.sublime-*
135+ .atom/*
136+ .eclipse/*
137+ *.code-workspace
138+ .history/*
139+
140+ # Build and Dependency Directories
141+ node_modules/*
142+ bower_components/*
143+ vendor/*
144+ packages/*
145+ jspm_packages/*
146+ .gradle/*
147+ target/*
148+ out/*
149+
150+ # Testing and Coverage Files
151+ coverage/*
152+ .coverage
153+ htmlcov/*
154+ .pytest_cache/*
155+ .tox/*
156+ junit.xml
157+ test-results/*
158+
159+ # Mobile Development
160+ *.apk
161+ *.aab
162+ *.ipa
163+ *.xcarchive
164+ *.provisionprofile
165+ google-services.json
166+ GoogleService-Info.plist
167+
168+ # Certificate and Security Files
169+ *.crt
170+ *.csr
171+ *.ovpn
172+ *.p7b
173+ *.p7s
174+ *.pfx
175+ *.spc
176+ *.stl
177+ *.pem.crt
178+ ssl/*
179+
180+ # Container and Infrastructure
181+ *.tfstate
182+ *.tfstate.backup
183+ .terraform/*
184+ .vagrant/*
185+ docker-compose.override.yml
186+ kubernetes/*
187+
188+ # Design and Media Files (often large and binary)
189+ *.psd
190+ *.ai
191+ *.sketch
192+ *.fig
193+ *.xd
194+ assets/raw/*
You can’t perform that action at this time.
0 commit comments