Skip to content

Commit 5e0ec8b

Browse files
committed
add .gitignore
1 parent e465392 commit 5e0ec8b

File tree

1 file changed

+141
-0
lines changed

1 file changed

+141
-0
lines changed

.gitignore

+141
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Xcode template
3+
# Xcode
4+
#
5+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
6+
7+
## User settings
8+
xcuserdata/
9+
10+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
11+
*.xcscmblueprint
12+
*.xccheckout
13+
14+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
15+
build/
16+
DerivedData/
17+
*.moved-aside
18+
*.pbxuser
19+
!default.pbxuser
20+
*.mode1v3
21+
!default.mode1v3
22+
*.mode2v3
23+
!default.mode2v3
24+
*.perspectivev3
25+
!default.perspectivev3
26+
### Java template
27+
# Compiled class file
28+
*.class
29+
30+
# Log file
31+
*.log
32+
33+
# BlueJ files
34+
*.ctxt
35+
36+
# Mobile Tools for Java (J2ME)
37+
.mtj.tmp/
38+
39+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
40+
hs_err_pid*
41+
### Objective-C template
42+
# Xcode
43+
#
44+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
45+
46+
## Build generated
47+
## Various settings
48+
## Other
49+
## Obj-C/Swift specific
50+
*.hmap
51+
*.ipa
52+
*.dSYM.zip
53+
*.dSYM
54+
55+
# CocoaPods
56+
#
57+
# We recommend against adding the Pods directory to your .gitignore. However
58+
# you should judge for yourself, the pros and cons are mentioned at:
59+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
60+
#
61+
# Pods/
62+
63+
# Carthage
64+
#
65+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
66+
# Carthage/Checkouts
67+
68+
Carthage/Build
69+
70+
# fastlane
71+
#
72+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
73+
# screenshots whenever they are needed.
74+
# For more information about the recommended setup visit:
75+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
76+
77+
fastlane/report.xml
78+
fastlane/Preview.html
79+
fastlane/screenshots/**/*.png
80+
fastlane/test_output
81+
82+
# Code Injection
83+
#
84+
# After new code Injection tools there's a generated folder /iOSInjectionProject
85+
# https://github.com/johnno1962/injectionforxcode
86+
87+
iOSInjectionProject/
88+
### JetBrains template
89+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
90+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
91+
92+
# User-specific stuff
93+
.idea/**/workspace.xml
94+
.idea/**/tasks.xml
95+
.idea/**/dictionaries
96+
.idea/**/shelf
97+
98+
# Sensitive or high-churn files
99+
.idea/**/dataSources/
100+
.idea/**/dataSources.ids
101+
.idea/**/dataSources.local.xml
102+
.idea/**/sqlDataSources.xml
103+
.idea/**/dynamic.xml
104+
.idea/**/uiDesigner.xml
105+
.idea/**/dbnavigator.xml
106+
107+
# Gradle
108+
.idea/**/gradle.xml
109+
.idea/**/libraries
110+
111+
# CMake
112+
cmake-build-debug/
113+
cmake-build-release/
114+
115+
# Mongo Explorer plugin
116+
.idea/**/mongoSettings.xml
117+
118+
# File-based project format
119+
*.iws
120+
121+
# IntelliJ
122+
out/
123+
124+
# mpeltonen/sbt-idea plugin
125+
.idea_modules/
126+
127+
# JIRA plugin
128+
atlassian-ide-plugin.xml
129+
130+
# Cursive Clojure plugin
131+
.idea/replstate.xml
132+
133+
# Crashlytics plugin (for Android Studio and IntelliJ)
134+
com_crashlytics_export_strings.xml
135+
crashlytics.properties
136+
crashlytics-build.properties
137+
fabric.properties
138+
139+
# Editor-based Rest Client
140+
.idea/httpRequests
141+

0 commit comments

Comments
 (0)