Skip to content

Commit bb045bc

Browse files
shaileshmishrashaileshmishra
authored andcommitted
✨ User module added
✅ Tests added for User module - (api, mock, unit) ✔️ coverage user module 100%
1 parent 8a1353a commit bb045bc

File tree

1 file changed

+263
-2
lines changed

1 file changed

+263
-2
lines changed

.gitignore

Lines changed: 263 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,264 @@
1-
/.env
2-
/target/
1+
### Code-Java ###
2+
3+
.idea
4+
.project
5+
.classpath
6+
factoryConfiguration.json
7+
8+
### Eclipse ###
9+
10+
.metadata
11+
.env
12+
.env/
13+
bin/
14+
tmp/
15+
*.tmp
16+
*.bak
17+
*.swp
18+
*~.nib
19+
local.properties
20+
.settings/
21+
.loadpath
22+
.recommenders
23+
24+
# External tool builders
25+
.externalToolBuilders/
26+
27+
# Locally stored "Eclipse launch configurations"
28+
*.launch
29+
30+
# PyDev specific (Python IDE for Eclipse)
31+
*.pydevproject
32+
33+
# CDT-specific (C/C++ Development Tooling)
34+
.cproject
35+
36+
# CDT- autotools
37+
.autotools
38+
39+
# Java annotation processor (APT)
40+
.factorypath
41+
42+
# PDT-specific (PHP Development Tools)
43+
.buildpath
44+
45+
# sbteclipse plugin
46+
.target
47+
48+
# Tern plugin
49+
.tern-project
50+
51+
# TeXlipse plugin
52+
.texlipse
53+
54+
# STS (Spring Tool Suite)
55+
.springBeans
56+
57+
# Code Recommenders
58+
.recommenders/
59+
60+
# Annotation Processing
61+
.apt_generated/
62+
.apt_generated_test/
63+
64+
# Scala IDE specific (Scala & Java development for Eclipse)
65+
.cache-main
66+
.scala_dependencies
67+
.worksheet
68+
69+
# Uncomment this line if you wish to ignore the project description file.
70+
# Typically, this file would be tracked if it contains build/dependency configurations:
71+
#.project
72+
73+
### Eclipse Patch ###
74+
# Spring Boot Tooling
75+
.sts4-cache/
76+
77+
### Intellij ###
78+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
79+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
80+
81+
# User-specific stuff
82+
.idea/**/workspace.xml
83+
.idea/**/tasks.xml
84+
.idea/**/usage.statistics.xml
85+
.idea/**/dictionaries
86+
.idea/**/shelf
87+
88+
# Generated files
89+
.idea/**/contentModel.xml
90+
91+
# Sensitive or high-churn files
92+
.idea/**/dataSources/
93+
.idea/**/dataSources.ids
94+
.idea/**/dataSources.local.xml
95+
.idea/**/sqlDataSources.xml
96+
.idea/**/dynamic.xml
97+
.idea/**/uiDesigner.xml
98+
.idea/**/dbnavigator.xml
99+
100+
# Gradle
101+
.idea/**/gradle.xml
102+
.idea/**/libraries
103+
104+
# Gradle and Maven with auto-import
105+
# When using Gradle or Maven with auto-import, you should exclude module files,
106+
# since they will be recreated, and may cause churn. Uncomment if using
107+
# auto-import.
108+
# .idea/artifacts
109+
# .idea/compiler.xml
110+
# .idea/jarRepositories.xml
111+
# .idea/modules.xml
112+
# .idea/*.iml
113+
# .idea/modules
114+
# *.iml
115+
# *.ipr
116+
117+
# CMake
118+
cmake-build-*/
119+
120+
# Mongo Explorer plugin
121+
.idea/**/mongoSettings.xml
122+
123+
# File-based project format
124+
*.iws
125+
126+
# IntelliJ
127+
out/
128+
129+
# mpeltonen/sbt-idea plugin
130+
.idea_modules/
131+
132+
# JIRA plugin
133+
atlassian-ide-plugin.xml
134+
135+
# Cursive Clojure plugin
136+
.idea/replstate.xml
137+
138+
# Crashlytics plugin (for Android Studio and IntelliJ)
139+
com_crashlytics_export_strings.xml
140+
crashlytics.properties
141+
crashlytics-build.properties
142+
fabric.properties
143+
144+
# Editor-based Rest Client
145+
.idea/httpRequests
146+
147+
# Android studio 3.1+ serialized cache file
148+
.idea/caches/build_file_checksums.ser
149+
150+
### Intellij Patch ###
151+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
152+
153+
# *.iml
154+
# modules.xml
155+
# .idea/misc.xml
156+
# *.ipr
157+
158+
# Sonarlint plugin
159+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
160+
.idea/**/sonarlint/
161+
162+
# SonarQube Plugin
163+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
164+
.idea/**/sonarIssues.xml
165+
166+
# Markdown Navigator plugin
167+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
168+
.idea/**/markdown-navigator.xml
169+
.idea/**/markdown-navigator-enh.xml
170+
.idea/**/markdown-navigator/
171+
172+
# Cache file creation bug
173+
# See https://youtrack.jetbrains.com/issue/JBR-2257
174+
.idea/$CACHE_FILE$
175+
176+
# CodeStream plugin
177+
# https://plugins.jetbrains.com/plugin/12206-codestream
178+
.idea/codestream.xml
179+
180+
### Java-Web ###
181+
## ignoring target file
182+
target/
183+
184+
### macOS ###
185+
# General
186+
.DS_Store
187+
.AppleDouble
188+
.LSOverride
189+
190+
# Icon must end with two \r
191+
Icon
192+
193+
# Thumbnails
194+
._*
195+
196+
# Files that might appear in the root of a volume
197+
.DocumentRevisions-V100
198+
.fseventsd
199+
.Spotlight-V100
200+
.TemporaryItems
201+
.Trashes
202+
.VolumeIcon.icns
203+
.com.apple.timemachine.donotpresent
204+
205+
# Directories potentially created on remote AFP share
206+
.AppleDB
207+
.AppleDesktop
208+
Network Trash Folder
209+
Temporary Items
210+
.apdisk
211+
212+
### Maven ###
213+
pom.xml.tag
214+
pom.xml.releaseBackup
215+
pom.xml.versionsBackup
216+
pom.xml.next
217+
release.properties
218+
dependency-reduced-pom.xml
219+
buildNumber.properties
220+
.mvn/timing.properties
221+
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
222+
.mvn/wrapper/maven-wrapper.jar
223+
224+
### VisualStudioCode ###
225+
.vscode/*
226+
!.vscode/settings.json
227+
!.vscode/tasks.json
228+
!.vscode/launch.json
229+
!.vscode/extensions.json
230+
*.code-workspace
231+
232+
### VisualStudioCode Patch ###
233+
# Ignore all local history of files
234+
.history
235+
236+
### Gradle ###
237+
.gradle
238+
build/
239+
240+
# Ignore Gradle GUI config
241+
gradle-app.setting
242+
243+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
244+
!gradle-wrapper.jar
245+
246+
# Cache of project
247+
.gradletasknamecache
248+
249+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
250+
# gradle/wrapper/gradle-wrapper.properties
251+
252+
### Gradle Patch ###
253+
**/build/
254+
255+
# End of https://www.toptal.com/developers/gitignore/api/macos,code-java,java-web,maven,gradle,intellij,visualstudiocode,eclipse
256+
.idea/compiler.xml
257+
.idea/encodings.xml
258+
.idea/jarRepositories.xml
259+
.idea/misc.xml
260+
.idea/modules.xml
261+
.idea/vcs.xml
262+
java.iml
263+
src/main/resources/
3264
/.idea/

0 commit comments

Comments
 (0)