Skip to content

Commit f125ef5

Browse files
committed
expand .gitignore and fix .vscode setting file
1 parent b979ef2 commit f125ef5

File tree

2 files changed

+89
-6
lines changed

2 files changed

+89
-6
lines changed

.gitignore

Lines changed: 89 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,89 @@
1-
internal
1+
internal
2+
3+
# arduino IDE build
4+
build
5+
6+
# Notepad++ backups
7+
*.bak
8+
**/nppBackup
9+
10+
# manual backups
11+
**/old
12+
*.zip
13+
14+
.vscode
15+
16+
## C & CPP things
17+
18+
# Compiled Object files
19+
*.slo
20+
*.lo
21+
*.o
22+
*.obj
23+
24+
# Precompiled Headers
25+
*.gch
26+
*.pch
27+
28+
# Compiled Dynamic libraries
29+
*.so
30+
*.dylib
31+
*.dll
32+
33+
# Fortran module files
34+
*.mod
35+
36+
# Compiled Static libraries
37+
*.lai
38+
*.la
39+
*.a
40+
*.lib
41+
42+
# Executables
43+
*.exe
44+
*.out
45+
*.app
46+
47+
# Windows image file caches
48+
Thumbs.db
49+
ehthumbs.db
50+
51+
# Folder config file
52+
Desktop.ini
53+
54+
# Recycle Bin used on file shares
55+
$RECYCLE.BIN/
56+
57+
# Windows Installer files
58+
*.cab
59+
*.msi
60+
*.msm
61+
*.msp
62+
63+
# Windows shortcuts
64+
*.lnk
65+
66+
# =========================
67+
# Operating System Files
68+
# =========================
69+
70+
# OSX
71+
# =========================
72+
73+
.DS_Store
74+
.AppleDouble
75+
.LSOverride
76+
77+
# Thumbnails
78+
._*
79+
80+
# Files that might appear on external disk
81+
.Spotlight-V100
82+
.Trashes
83+
84+
# Directories potentially created on remote AFP share
85+
.AppleDB
86+
.AppleDesktop
87+
Network Trash Folder
88+
Temporary Items
89+
.apdisk

.vscode/settings.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)