Skip to content

Commit cbc5cb4

Browse files
committed
"chore: remove tracked .iml files and add to .gitignore"
Signed-off-by: https://github.com/Someshdiwan <[email protected]>
1 parent ef60455 commit cbc5cb4

File tree

82 files changed

+83
-891
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+83
-891
lines changed

.gitignore

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# ==============================
2+
# IntelliJ IDEA
3+
# ==============================
4+
*.iml
5+
.idea/
6+
out/
7+
!**/src/main/**/out/
8+
!**/src/test/**/out/
9+
10+
# ==============================
11+
# Eclipse
12+
# ==============================
13+
.apt_generated/
14+
.classpath
15+
.factorypath
16+
.project
17+
.settings/
18+
.springBeans
19+
.sts4-cache/
20+
bin/
21+
!**/src/main/**/bin/
22+
!**/src/test/**/bin/
23+
24+
# ==============================
25+
# NetBeans
26+
# ==============================
27+
/nbproject/private/
28+
/nbbuild/
29+
/dist/
30+
/nbdist/
31+
/.nb-gradle/
32+
33+
# ==============================
34+
# VS Code
35+
# ==============================
36+
.vscode/
37+
38+
# ==============================
39+
# macOS
40+
# ==============================
41+
.DS_Store
42+
43+
# ==============================
44+
# Windows
45+
# ==============================
46+
Thumbs.db
47+
ehthumbs.db
48+
desktop.ini
49+
50+
# ==============================
51+
# Build Output
52+
# ==============================
53+
target/
54+
build/
55+
*.log
56+
57+
# ==============================
58+
# Environment Files
59+
# ==============================
60+
.env
61+
.env.local
62+
*.env
63+
!sample.env
64+
65+
# ==============================
66+
# Java / Maven / Gradle
67+
# ==============================
68+
*.class
69+
*.jar
70+
*.war
71+
*.ear
72+
73+
# ==============================
74+
# GitHub Actions
75+
# ==============================
76+
# Do NOT ignore workflow files
77+
!.github/workflows/*.yml
78+
79+
# ==============================
80+
# YAML Configs (Safe Ignore)
81+
# ==============================
82+
# Only ignore IDE/tool YAMLs, not app configs like application.yml
83+
.idea/*.yml

JAVA8/CompletableFuture/CompletableFuture.iml

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

JAVA8/ConstructorReference/ConstructorReference.iml

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

JAVA8/ConsumerSupplier/ConsumerSupplier.iml

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

JAVA8/FunctionInterface/FunctionInterface.iml

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

JAVA8/JAVA8.iml

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

JAVA8/JAVA8FeaturesUsedInStreams/JAVA8FeaturesUsedInStreams.iml

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

JAVA8/JavaCollectorsAPI/JavaCollectorsAPI.iml

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

JAVA8/LambdaExpression/LambdaExpression.iml

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

JAVA8/MethodReference/MethodReference.iml

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

0 commit comments

Comments
 (0)