Skip to content

Commit 17a22e2

Browse files
committed
Init
0 parents  commit 17a22e2

File tree

365 files changed

+42879
-0
lines changed

Some content is hidden

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

365 files changed

+42879
-0
lines changed

.bundle/config

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
BUNDLE_PATH: "vendor/bundle"

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Windows files should use crlf line endings
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
*.bat text eol=crlf

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [ospfranco]

.gitignore

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
build/
8+
*.pbxuser
9+
!default.pbxuser
10+
*.mode1v3
11+
!default.mode1v3
12+
*.mode2v3
13+
!default.mode2v3
14+
*.perspectivev3
15+
!default.perspectivev3
16+
xcuserdata
17+
*.xccheckout
18+
*.moved-aside
19+
DerivedData
20+
*.hmap
21+
*.ipa
22+
*.xcuserstate
23+
ios/.xcode.env.local
24+
25+
# Windows
26+
msbuild.binlog
27+
28+
# Android/IntelliJ
29+
#
30+
build/
31+
.idea
32+
.gradle
33+
local.properties
34+
*.iml
35+
36+
.cxx/
37+
*.keystore
38+
!debug.keystore
39+
40+
# node.js
41+
#
42+
node_modules/
43+
npm-debug.log
44+
yarn-error.log
45+
46+
# fastlane
47+
#
48+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
49+
# screenshots whenever they are needed.
50+
# For more information about the recommended setup visit:
51+
# https://docs.fastlane.tools/best-practices/source-control/
52+
53+
*/fastlane/report.xml
54+
*/fastlane/Preview.html
55+
*/fastlane/screenshots
56+
57+
# Bundle artifact
58+
*.jsbundle
59+
60+
# CocoaPods
61+
/ios/Pods/
62+
env.json
63+
64+
# Fastlane
65+
/fastlane/report.xml
66+
67+
# Built binaries
68+
**/Sol.app
69+
**/Sol.app.zip
70+
71+
vendor
72+
73+
# Temporary files created by Metro to check the health of the file watcher
74+
.metro-health-check*
75+
76+
src/env.ts
77+
Sol.app.zip
78+
Sol.app copy.zip
79+
sentry.properties
80+
releases/*.zip

.prettierrc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"semi": false,
3+
"bracketSpacing": false,
4+
"jsxBracketSameLine": true,
5+
"singleQuote": true,
6+
"trailingComma": "all",
7+
"arrowParens": "avoid"
8+
}

.tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby 3

.vscode/settings.json

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"sash.hoverBorder": "#39a7fe",
4+
"statusBar.background": "#0691fe",
5+
"statusBar.foreground": "#e7e7e7",
6+
"statusBarItem.hoverBackground": "#39a7fe",
7+
"statusBarItem.remoteBackground": "#0691fe",
8+
"statusBarItem.remoteForeground": "#e7e7e7"
9+
},
10+
"peacock.color": "#0691fe",
11+
"files.associations": {
12+
"__bit_reference": "cpp",
13+
"__hash_table": "cpp",
14+
"__split_buffer": "cpp",
15+
"__tree": "cpp",
16+
"array": "cpp",
17+
"deque": "cpp",
18+
"hash_map": "cpp",
19+
"hash_set": "cpp",
20+
"forward_list": "cpp",
21+
"initializer_list": "cpp",
22+
"ios": "cpp",
23+
"list": "cpp",
24+
"map": "cpp",
25+
"regex": "cpp",
26+
"set": "cpp",
27+
"span": "cpp",
28+
"string": "cpp",
29+
"string_view": "cpp",
30+
"unordered_map": "cpp",
31+
"unordered_set": "cpp",
32+
"valarray": "cpp",
33+
"vector": "cpp",
34+
"*.ipp": "cpp"
35+
}
36+
}

.watchmanconfig

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"prefer_split_fsevents_watcher": true
3+
}

.yarnrc.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
nmHoistingLimits: workspaces
2+
3+
nodeLinker: node-modules

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "https://rubygems.org"
2+
3+
gem "fastlane"
4+
gem "cocoapods"

0 commit comments

Comments
 (0)