File tree Expand file tree Collapse file tree 1 file changed +81
-0
lines changed Expand file tree Collapse file tree 1 file changed +81
-0
lines changed Original file line number Diff line number Diff line change 1+ # # #################################################################
2+ # # Generic ignores
3+ # # #################################################################
4+
5+ # OS generated files
6+ .DS_Store
7+ Thumbs.db
8+
9+ # Backup and temporary files
10+ * ~
11+ * .swp
12+ * .lock
13+ * .log
14+ * .bak
15+ * .tmp
16+ * .old
17+ * . #*
18+ . #*
19+
20+ # Editor specific files
21+ .vscode /
22+ .idea /
23+ * .iml
24+
25+ # # #################################################################
26+ # # Java/Gradle related ignores
27+ # # #################################################################
28+
29+ # Gradle files
30+ .gradle /
31+ build /
32+
33+ # Maven files
34+ .mvn /
35+ target /
36+
37+ # Java class files
38+ * .class
39+
40+ # JAR/WAR files
41+ * .jar
42+ * .war
43+ * .ear
44+
45+ # # #################################################################
46+ # # IDE specific ignores
47+ # # #################################################################
48+
49+ # IntelliJ IDEA
50+ .idea /
51+ * .iml
52+ * .iws
53+
54+ # VSCode
55+ .vscode /
56+
57+ # Eclipse
58+ .classpath
59+ .project
60+ .settings /
61+
62+ # NetBeans
63+ /nbproject /private /
64+ /build /
65+ /nbbuild /
66+ /dist /
67+ /nbdist /
68+ /.nb-gradle /
69+
70+ # Logs and coverage reports
71+ * .log
72+ * .out
73+ * .coverage
74+ * .reports
75+
76+ # # #################################################################
77+ # # Miscellaneous ignores
78+ # # #################################################################
79+
80+ # Other build directories and generated files
81+ /bin /
You can’t perform that action at this time.
0 commit comments