Skip to content

Commit fa3ac31

Browse files
author
Reed Es
committed
first commit
0 parents  commit fa3ac31

File tree

28 files changed

+2320
-0
lines changed

28 files changed

+2320
-0
lines changed

.gitignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# .DS_Store
2+
# /Packages
3+
# /*.xcodeproj
4+
# xcuserdata/
5+
6+
.build/
7+
.swiftpm/
8+
Bundle/
9+
10+
## User settings
11+
xcuserdata/
12+
xcshareddata/
13+
14+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
15+
*.xcscmblueprint
16+
*.xccheckout
17+
18+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
19+
build/
20+
DerivedData/
21+
*.moved-aside
22+
*.pbxuser
23+
!default.pbxuser
24+
*.mode1v3
25+
!default.mode1v3
26+
*.mode2v3
27+
!default.mode2v3
28+
*.perspectivev3
29+
!default.perspectivev3
30+
31+
## Gcc Patch
32+
/*.gcno
33+
34+
### Xcode Patch ###
35+
*.xcodeproj/*
36+
!*.xcodeproj/project.pbxproj
37+
!*.xcodeproj/xcshareddata/
38+
!*.xcworkspace/contents.xcworkspacedata
39+
**/xcshareddata/WorkspaceSettings.xcsettings
40+
41+
# added 1/21/21 by reed
42+
*.xcworkspace/xcshareddata/
43+
*.xcworkspace/xcuserdata/
44+
45+
# added 3/1/21 by reed
46+
web/node_modules/*
47+
web/lib/*
48+
web/package-log.json
49+
web/package.json
50+
51+
# End of https://www.toptal.com/developers/gitignore/api/xcode

.swiftformat

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
--wraparguments after-first
2+
3+
# was changing
4+
# let routine: Routine = Routine.get(viewContext, forURIRepresentation: routineURI)
5+
# to
6+
# let routine = Routine.get(viewContext, forURIRepresentation: routineURI)
7+
--disable redundantType

0 commit comments

Comments
 (0)