Skip to content

Commit e2bb3d5

Browse files
author
lzj
committed
优化脚本
1 parent a0d0579 commit e2bb3d5

File tree

124 files changed

+224
-31203
lines changed

Some content is hidden

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

124 files changed

+224
-31203
lines changed

.DS_Store

2 KB
Binary file not shown.

.gitignore

Lines changed: 221 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,222 @@
1-
# Prerequisites
2-
*.d
3-
4-
# Object files
5-
*.o
6-
*.ko
7-
*.obj
8-
*.elf
9-
10-
# Linker output
11-
*.ilk
12-
*.map
13-
*.exp
14-
15-
# Precompiled Headers
16-
*.gch
17-
*.pch
18-
19-
# Libraries
20-
*.lib
21-
*.a
22-
*.la
23-
*.lo
24-
25-
# Shared objects (inc. Windows DLLs)
26-
*.dll
27-
*.so
28-
*.so.*
29-
*.dylib
30-
31-
# Executables
32-
*.exe
33-
*.out
34-
*.app
35-
*.i*86
36-
*.x86_64
37-
*.hex
38-
39-
# Debug files
40-
*.dSYM/
41-
*.su
42-
*.idb
43-
*.pdb
44-
45-
# Kernel Module Compile Results
46-
*.mod*
47-
*.cmd
48-
.tmp_versions/
49-
modules.order
50-
Module.symvers
51-
Mkfile.old
52-
dkms.conf
1+
# Xcode
2+
#
3+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
## User settings
6+
xcuserdata/
7+
8+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
9+
*.xcscmblueprint
10+
*.xccheckout
11+
12+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
13+
build/
14+
DerivedData/
15+
*.moved-aside
16+
*.pbxuser
17+
!default.pbxuser
18+
*.mode1v3
19+
!default.mode1v3
20+
*.mode2v3
21+
!default.mode2v3
22+
*.perspectivev3
23+
!default.perspectivev3
24+
25+
## Obj-C/Swift specific
26+
*.hmap
27+
28+
## App packaging
29+
*.ipa
30+
*.dSYM.zip
31+
*.dSYM
32+
33+
# CocoaPods
34+
#
35+
# We recommend against adding the Pods directory to your .gitignore. However
36+
# you should judge for yourself, the pros and cons are mentioned at:
37+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
38+
#
39+
Pods/
40+
*.xcworkspace
41+
42+
# Carthage
43+
#
44+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
45+
Carthage/Checkouts
46+
47+
Carthage/Build/
48+
49+
# fastlane
50+
#
51+
# It is recommended to not store the screenshots in the git repo.
52+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
53+
# For more information about the recommended setup visit:
54+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
55+
56+
fastlane/report.xml
57+
fastlane/Preview.html
58+
fastlane/screenshots/**/*.png
59+
fastlane/test_output
60+
61+
# Code Injection
62+
#
63+
# After new code Injection tools there's a generated folder /iOSInjectionProject
64+
# https://github.com/johnno1962/injectionforxcode
65+
66+
iOSInjectionProject/
5367
.DS_Store
68+
*/.DS_Store
69+
70+
# Xcode
71+
#
72+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
73+
74+
## User settings
75+
xcuserdata/
76+
77+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
78+
*.xcscmblueprint
79+
*.xccheckout
80+
81+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
82+
build/
83+
DerivedData/
84+
*.moved-aside
85+
*.pbxuser
86+
!default.pbxuser
87+
*.mode1v3
88+
!default.mode1v3
89+
*.mode2v3
90+
!default.mode2v3
91+
*.perspectivev3
92+
!default.perspectivev3
93+
94+
## Obj-C/Swift specific
95+
*.hmap
96+
97+
## App packaging
98+
*.ipa
99+
*.dSYM.zip
100+
*.dSYM
101+
102+
## Playgrounds
103+
timeline.xctimeline
104+
playground.xcworkspace
105+
106+
# Swift Package Manager
107+
#
108+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
109+
Packages/
110+
Package.pins
111+
Package.resolved
112+
*.xcodeproj
113+
#
114+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
115+
# hence it is not needed unless you have added a package configuration file to your project
116+
.swiftpm
117+
118+
.build/
119+
iOSInjectionProject/
120+
.DS_Store
121+
122+
# Built application files
123+
*.apk
124+
*.aar
125+
*.ap_
126+
*.aab
127+
128+
# Files for the ART/Dalvik VM
129+
*.dex
130+
131+
# Java class files
132+
*.class
133+
134+
# Generated files
135+
bin/
136+
gen/
137+
out/
138+
# Uncomment the following line in case you need and you don't have the release build type files in your app
139+
# release/
140+
141+
# Gradle files
142+
.gradle/
143+
build/
144+
/build/
145+
146+
# Local configuration file (sdk path, etc)
147+
local.properties
148+
149+
# Proguard folder generated by Eclipse
150+
proguard/
151+
152+
# Log Files
153+
*.log
154+
155+
# Android Studio Navigation editor temp files
156+
.navigation/
157+
158+
# Android Studio captures folder
159+
captures/
160+
161+
# IntelliJ
162+
*.iml
163+
.idea/
164+
.idea/workspace.xml
165+
.idea/tasks.xml
166+
.idea/gradle.xml
167+
.idea/assetWizardSettings.xml
168+
.idea/dictionaries
169+
.idea/libraries
170+
# Android Studio 3 in .gitignore file.
171+
.idea/caches
172+
.idea/modules.xml
173+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
174+
.idea/navEditor.xml
175+
176+
# Keystore files
177+
# Uncomment the following lines if you do not want to check your keystore files in.
178+
#*.jks
179+
#*.keystore
180+
181+
# External native build folder generated in Android Studio 2.2 and later
182+
.externalNativeBuild
183+
.cxx/
184+
185+
# Google Services (e.g. APIs or Firebase)
186+
# google-services.json
187+
188+
# Freeline
189+
freeline.py
190+
freeline/
191+
freeline_project_description.json
192+
193+
# fastlane
194+
fastlane/report.xml
195+
fastlane/Preview.html
196+
fastlane/screenshots
197+
fastlane/test_output
198+
fastlane/readme.md
199+
200+
# Version control
201+
vcs.xml
202+
203+
# lint
204+
lint/intermediates/
205+
lint/generated/
206+
lint/outputs/
207+
lint/tmp/
208+
# lint/reports/
209+
210+
# Other
211+
libs_export/
212+
.DS_Store
213+
*/.DS_Store
214+
215+
node_modules
216+
yarn.lock
217+
bundles
218+
yarn-error.log
219+
*.jsbundle
220+
.DS_Store
221+
*/.DS_Store
222+

0 commit comments

Comments
 (0)