Skip to content

Commit 0b02d77

Browse files
authored
Merge pull request #26 from varunjha089/master
Update .gitignore
2 parents 9970e71 + 8a402d0 commit 0b02d77

File tree

1 file changed

+183
-7
lines changed

1 file changed

+183
-7
lines changed

.gitignore

Lines changed: 183 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,185 @@
1+
# Created by https://www.gitignore.io/api/macos,linux,android,windows,intellij
2+
3+
### Android ###
4+
# Built application files
5+
*.apk
6+
*.ap_
7+
8+
# Files for the ART/Dalvik VM
9+
*.dex
10+
11+
# Java class files
12+
*.class
13+
14+
# Generated files
15+
bin/
16+
gen/
17+
out/
18+
19+
# Gradle files
20+
.gradle/
21+
build/
22+
23+
# Local configuration file (sdk path, etc)
24+
local.properties
25+
26+
# Proguard folder generated by Eclipse
27+
proguard/
28+
29+
# Log Files
30+
*.log
31+
32+
# Android Studio Navigation editor temp files
33+
.navigation/
34+
35+
# Android Studio captures folder
36+
captures/
37+
38+
# Intellij
139
*.iml
2-
.gradle
3-
/local.properties
4-
/.idea/workspace.xml
5-
/.idea/libraries
6-
.DS_Store
7-
/build
8-
/captures
40+
.idea/workspace.xml
41+
.idea/tasks.xml
42+
.idea/gradle.xml
43+
.idea/dictionaries
44+
.idea/libraries
45+
46+
# External native build folder generated in Android Studio 2.2 and later
947
.externalNativeBuild
48+
49+
# Freeline
50+
freeline.py
51+
freeline/
52+
freeline_project_description.json
53+
54+
### Android Patch ###
55+
gen-external-apklibs
56+
57+
### Intellij ###
58+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
59+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
60+
61+
# User-specific stuff:
62+
.idea/**/workspace.xml
63+
.idea/**/tasks.xml
64+
65+
# Sensitive or high-churn files:
66+
.idea/**/dataSources/
67+
.idea/**/dataSources.ids
68+
.idea/**/dataSources.xml
69+
.idea/**/dataSources.local.xml
70+
.idea/**/sqlDataSources.xml
71+
.idea/**/dynamic.xml
72+
.idea/**/uiDesigner.xml
73+
74+
# Gradle:
75+
.idea/**/gradle.xml
76+
.idea/**/libraries
77+
78+
# CMake
79+
cmake-build-debug/
80+
81+
# Mongo Explorer plugin:
82+
.idea/**/mongoSettings.xml
83+
84+
## File-based project format:
85+
*.iws
86+
87+
## Plugin-specific files:
88+
89+
# IntelliJ
90+
/out/
91+
92+
# mpeltonen/sbt-idea plugin
93+
.idea_modules/
94+
95+
# JIRA plugin
96+
atlassian-ide-plugin.xml
97+
98+
# Cursive Clojure plugin
99+
.idea/replstate.xml
100+
101+
# Ruby plugin and RubyMine
102+
/.rakeTasks
103+
104+
# Crashlytics plugin (for Android Studio and IntelliJ)
105+
com_crashlytics_export_strings.xml
106+
crashlytics.properties
107+
crashlytics-build.properties
108+
fabric.properties
109+
110+
### Intellij Patch ###
111+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
112+
113+
# *.iml
114+
# modules.xml
115+
# .idea/misc.xml
116+
# *.ipr
117+
118+
# Sonarlint plugin
119+
.idea/sonarlint
120+
121+
### Linux ###
122+
*~
123+
124+
# temporary files which can be created if a process still has a handle open of a deleted file
125+
.fuse_hidden*
126+
127+
# KDE directory preferences
128+
.directory
129+
130+
# Linux trash folder which might appear on any partition or disk
131+
.Trash-*
132+
133+
# .nfs files are created when an open file is removed but is still being accessed
134+
.nfs*
135+
136+
### macOS ###
137+
*.DS_Store
138+
.AppleDouble
139+
.LSOverride
140+
141+
# Icon must end with two \r
142+
Icon
143+
144+
# Thumbnails
145+
._*
146+
147+
# Files that might appear in the root of a volume
148+
.DocumentRevisions-V100
149+
.fseventsd
150+
.Spotlight-V100
151+
.TemporaryItems
152+
.Trashes
153+
.VolumeIcon.icns
154+
.com.apple.timemachine.donotpresent
155+
156+
# Directories potentially created on remote AFP share
157+
.AppleDB
158+
.AppleDesktop
159+
Network Trash Folder
160+
Temporary Items
161+
.apdisk
162+
163+
### Windows ###
164+
# Windows thumbnail cache files
165+
Thumbs.db
166+
ehthumbs.db
167+
ehthumbs_vista.db
168+
169+
# Folder config file
170+
Desktop.ini
171+
172+
# Recycle Bin used on file shares
173+
$RECYCLE.BIN/
174+
175+
# Windows Installer files
176+
*.cab
177+
*.msi
178+
*.msm
179+
*.msp
180+
181+
# Windows shortcuts
182+
*.lnk
183+
184+
185+
# End of https://www.gitignore.io/api/macos,linux,android,windows,intellij

0 commit comments

Comments
 (0)