-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
97 lines (82 loc) · 1.49 KB
/
.gitignore
File metadata and controls
97 lines (82 loc) · 1.49 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
# Root-level gitignore for mixed Android (Gradle) + Arduino project
############################
# General
############################
.DS_Store
Thumbs.db
*.log
*.tmp
*.swp
*.swo
*.orig
############################
# Node / tooling (if any)
############################
node_modules/
############################
# JetBrains / IntelliJ / Android Studio
############################
.idea/
*.iml
.gradle/
/local.properties
/captures/
/.navigation/
/.cxx/
# Android build outputs
**/build/
**/outputs/
**/generated/
# Gradle cache
.gradle/
**/.gradle/
# Keystores (never commit real keys)
*.jks
*.keystore
############################
# Kotlin specific
############################
.kotlinc/
############################
# Android fastlane (if used)
############################
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/
fastlane/test_output
############################
# VSCode / misc editors
############################
.vscode/
.history/
############################
# Arduino / PlatformIO / build artifacts
############################
# Arduino IDE build caches
*.arduino.*
*.ino.cpp
*.elf
*.eep
*.hex
*.bin
*.map
*.lst
# PlatformIO (if ever used here)
.pio/
.piolibdeps/
# Mac serial port files (just in case)
*.dmg
############################
# OS / OneDrive noise
############################
*.tmp
~$*
$RECYCLE.BIN/
System Volume Information/
############################
# Local environment / secrets samples
############################
.env
.env.*
.env.local
# End of file