Skip to content

Commit 890b69b

Browse files
committed
Release
0 parents  commit 890b69b

70 files changed

Lines changed: 23412 additions & 0 deletions

Some content is hidden

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

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
end_of_line = crlf
7+
charset = utf-8
8+
trim_trailing_whitespace = false
9+
insert_final_newline = true
10+
11+
[{*.json,*.yml,*.yaml}]
12+
indent_style = space
13+
indent_size = 2

.eslintrc.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"env": {
3+
"es2021": true,
4+
"node": true,
5+
"react-native/react-native": true
6+
},
7+
"extends": [
8+
"plugin:tailwindcss/recommended"
9+
],
10+
"parserOptions": {
11+
"ecmaFeatures": {
12+
"jsx": true
13+
},
14+
"ecmaVersion": 12,
15+
"sourceType": "module"
16+
},
17+
"plugins": [
18+
"react",
19+
"react-native"
20+
],
21+
"rules": {
22+
"no-restricted-imports": "off",
23+
"@typescript-eslint/no-restricted-imports": [
24+
"warn",
25+
{
26+
"name": "react-redux",
27+
"importNames": [
28+
"useSelector",
29+
"useDispatch"
30+
],
31+
"message": "Use typed hooks `useAppDispatch` and `useAppSelector` instead."
32+
}
33+
],
34+
"react/prop-types": [
35+
"error",
36+
{
37+
"ignore": [
38+
"navigation",
39+
"navigation.navigate"
40+
]
41+
}
42+
]
43+
}
44+
}

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ko_fi: kopter
2+
patreon: kopter

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
node_modules/
2+
.expo/
3+
dist/
4+
npm-debug.*
5+
*.jks
6+
*.p8
7+
*.p12
8+
*.key
9+
*.mobileprovision
10+
*.orig.*
11+
web-build/
12+
*.apk
13+
14+
# macOS
15+
.DS_Store
16+
17+
# Temporary files created by Metro to check the health of the file watcher
18+
.metro-health-check*

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"EditorConfig.EditorConfig",
4+
"expo.vscode-expo-tools",
5+
"msjsdiag.vscode-react-native"
6+
]
7+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"material-icon-theme.activeIconPack": "react_redux",
3+
}

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# RustCON - Mobile App

app.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/// <reference types="nativewind/types" />

app.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"expo": {
3+
"name": "RustCON",
4+
"owner": "kopter",
5+
"slug": "rustcon",
6+
"version": "0.1.0-beta",
7+
"githubUrl": "https://github.com/RustCONxyz/mobile",
8+
"orientation": "portrait",
9+
"icon": "./assets/images/icon.png",
10+
"scheme": "myapp",
11+
"userInterfaceStyle": "automatic",
12+
"splash": {
13+
"image": "./assets/images/splash.png",
14+
"resizeMode": "contain",
15+
"backgroundColor": "#0a0a0a"
16+
},
17+
"androidStatusBar": {
18+
"barStyle": "light-content"
19+
},
20+
"androidNavigationBar": {
21+
"barStyle": "light-content",
22+
"backgroundColor": "#0a0a0a"
23+
},
24+
"backgroundColor": "#0a0a0a",
25+
"assetBundlePatterns": [
26+
"**/*"
27+
],
28+
"ios": {
29+
"supportsTablet": true,
30+
"bundleIdentifier": "xyz.rustcon.app"
31+
},
32+
"android": {
33+
"adaptiveIcon": {
34+
"foregroundImage": "./assets/images/adaptive-icon.png",
35+
"backgroundColor": "#0a0a0a"
36+
},
37+
"package": "xyz.rustcon.app"
38+
},
39+
"extra": {
40+
"eas": {
41+
"projectId": "309b0a43-07c5-4218-91af-a414b1d98fdb"
42+
}
43+
}
44+
}
45+
}

0 commit comments

Comments
 (0)