Skip to content

Commit f8c0443

Browse files
committed
chore: Remove .DS_Store and update .gitignore with additional entries
1 parent 168f27e commit f8c0443

File tree

2 files changed

+200
-0
lines changed

2 files changed

+200
-0
lines changed

.DS_Store

-10 KB
Binary file not shown.

.gitignore

Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,203 @@
1+
# VS Code
2+
.vscode/*
3+
!.vscode/settings.json
4+
!.vscode/tasks.json
5+
!.vscode/launch.json
6+
!.vscode/extensions.json
7+
8+
# General
9+
.DS_Store
10+
.AppleDouble
11+
.LSOverride
12+
13+
# Icon must end with two \r
14+
Icon
15+
16+
# Thumbnails
17+
._*
18+
19+
# Files that might appear in the root of a volume
20+
.DocumentRevisions-V100
21+
.fseventsd
22+
.Spotlight-V100
23+
.TemporaryItems
24+
.Trashes
25+
.VolumeIcon.icns
26+
.com.apple.timemachine.donotpresent
27+
28+
# Directories potentially created on remote AFP share
29+
.AppleDB
30+
.AppleDesktop
31+
Network Trash Folder
32+
Temporary Items
33+
.apdisk
34+
35+
# Xcode
36+
#
37+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
38+
39+
## User settings
40+
xcuserdata/
41+
42+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
43+
*.xcscmblueprint
44+
*.xccheckout
45+
46+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
47+
build/
48+
DerivedData/
49+
*.moved-aside
50+
*.pbxuser
51+
!default.pbxuser
52+
*.mode1v3
53+
!default.mode1v3
54+
*.mode2v3
55+
!default.mode2v3
56+
*.perspectivev3
57+
!default.perspectivev3
58+
59+
# -*- mode: gitignore; -*-
60+
*~
61+
\#*\#
62+
/.emacs.desktop
63+
/.emacs.desktop.lock
64+
*.elc
65+
auto-save-list
66+
tramp
67+
.\#*
68+
69+
# Org-mode
70+
.org-id-locations
71+
*_archive
72+
73+
# flymake-mode
74+
*_flymake.*
75+
76+
# eshell files
77+
/eshell/history
78+
/eshell/lastdir
79+
80+
# elpa packages
81+
/elpa/
82+
83+
# reftex files
84+
*.rel
85+
86+
# AUCTeX auto folder
87+
/auto/
88+
89+
# cask packages
90+
.cask/
91+
dist/
92+
93+
# Flycheck
94+
flycheck_*.el
95+
96+
# server auth directory
97+
/server/
98+
99+
# projectiles files
100+
.projectile
101+
102+
# directory configuration
103+
.dir-locals.el
104+
105+
# network security
106+
/network-security.data
107+
108+
# Built application files
109+
*.apk
110+
*.ap_
111+
*.aab
112+
*.aar
113+
114+
# Files for the ART/Dalvik VM
115+
*.dex
116+
117+
# Java class files
118+
*.class
119+
120+
# Generated files
121+
bin/
122+
gen/
123+
out/
124+
125+
# Gradle files
126+
.gradle/
127+
build/
128+
129+
# Local configuration file (sdk path, etc)
130+
local.properties
131+
132+
# Proguard folder generated by Eclipse
133+
proguard/
134+
135+
# Log Files
136+
*.log
137+
138+
# Android Studio Navigation editor temp files
139+
.navigation/
140+
141+
# Android Studio captures folder
142+
captures/
143+
144+
# IntelliJ
145+
*.iml
146+
.idea
147+
148+
# Keystore files
149+
# Uncomment the following lines if you do not want to check your keystore files in.
150+
*.jks
151+
*.keystore
152+
153+
# External native build folder generated in Android Studio 2.2 and later
154+
.externalNativeBuild
155+
.cxx
156+
157+
# Google Services (e.g. APIs or Firebase)
158+
google-services.json
159+
160+
# Freeline
161+
freeline.py
162+
freeline/
163+
freeline_project_description.json
164+
165+
# fastlane
166+
fastlane/report.xml
167+
fastlane/Preview.html
168+
fastlane/screenshots
169+
fastlane/test_output
170+
fastlane/readme.md
171+
172+
# GitHub pages
173+
CNAME
174+
175+
# SVN
176+
.svn
177+
tags
178+
179+
# Visual Studio
180+
.vs
181+
182+
# .NET
183+
obj
184+
185+
# macOS
186+
_MACOSX
187+
188+
# Eclipse
189+
.settings
190+
.classpath
191+
.project
192+
193+
# GDB
194+
gdb.setup
195+
gdbserver
196+
197+
# Rust
198+
target
199+
Cargo.lock
200+
1201
develop-environment/jdk-8u311-linux-x64.tar.xz
2202
develop-environment/zig-linux-x86_64-*.tar.xz
3203
develop-environment/flutter_linux_*-stable.tar.xz

0 commit comments

Comments
 (0)