File tree Expand file tree Collapse file tree 1 file changed +83
-0
lines changed
Expand file tree Collapse file tree 1 file changed +83
-0
lines changed Original file line number Diff line number Diff line change 1+ # ----------------------------------------
2+ # Java Build & Class Files
3+ # ----------------------------------------
4+ * .class
5+ * .jar
6+ * .war
7+ * .ear
8+
9+ # Ignore compiled output directories
10+ /bin /
11+ /out /
12+ /target /
13+
14+ # ----------------------------------------
15+ # Environment Variables (DO NOT COMMIT)
16+ # ----------------------------------------
17+ .env
18+ .env. *
19+ * .env
20+
21+ # Example credentials file for database configs
22+ /db_credentials.txt
23+
24+ # ----------------------------------------
25+ # IDE Files
26+ # ----------------------------------------
27+
28+ # VS Code
29+ .vscode /
30+
31+ # IntelliJ IDEA / JetBrains
32+ .idea /
33+ * .iml
34+ * .ipr
35+ * .iws
36+
37+ # Eclipse
38+ .project
39+ .classpath
40+ .settings /
41+ bin /
42+
43+ # NetBeans
44+ nbproject /private /
45+ build /
46+ nbbuild /
47+ dist /
48+ nbdist /
49+ .nbm /
50+
51+ # ----------------------------------------
52+ # Operating System Files
53+ # ----------------------------------------
54+
55+ # macOS
56+ .DS_Store
57+ .AppleDouble
58+ .LSOverride
59+
60+ # Windows
61+ Thumbs.db
62+ ehthumbs.db
63+ Desktop.ini
64+
65+ # Linux
66+ * ~
67+
68+ # ----------------------------------------
69+ # Logs & Temp Files
70+ # ----------------------------------------
71+ * .log
72+ * .tmp
73+ * .temp
74+
75+ # ----------------------------------------
76+ # Node (if editor plugins create it)
77+ # ----------------------------------------
78+ node_modules /
79+
80+ # ----------------------------------------
81+ # Screenshots Cache (optional)
82+ # ----------------------------------------
83+ /screenshots /* .tmp
You can’t perform that action at this time.
0 commit comments