Skip to content

Commit

Permalink
Merge pull request #5 from DerGoogler/1.5.0
Browse files Browse the repository at this point in the history
1.5.0 (150)
  • Loading branch information
DerGoogler authored Oct 31, 2022
2 parents 97dad91 + 17988f4 commit 06fd676
Show file tree
Hide file tree
Showing 188 changed files with 32,162 additions and 34,748 deletions.
6 changes: 6 additions & 0 deletions .buckconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

[android]
target = Google Inc.:Google APIs:23

[maven_repositories]
central = https://repo1.maven.org/maven2
2 changes: 2 additions & 0 deletions .bundle/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
BUNDLE_PATH: "vendor/bundle"
BUNDLE_FORCE_RUBY_PLATFORM: 1
16 changes: 16 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
root: true,
extends: '@react-native-community',
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
overrides: [
{
files: ['*.ts', '*.tsx'],
rules: {
'@typescript-eslint/no-shadow': ['error'],
'no-shadow': 'off',
'no-undef': 'off',
},
},
],
};
30 changes: 0 additions & 30 deletions .github/workflows/android.yml

This file was deleted.

71 changes: 0 additions & 71 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/workflows/webpack.yml

This file was deleted.

66 changes: 63 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,64 @@
package.json
package-lock.json
# OSX
#
.DS_Store

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
ios/.xcode.env.local

# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml
*.hprof
.cxx/

# node.js
#
node_modules/
__pycache__/
npm-debug.log
yarn-error.log

# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/

**/fastlane/report.xml
**/fastlane/Preview.html
**/fastlane/screenshots
**/fastlane/test_output

# Bundle artifact
*.jsbundle

# Ruby / CocoaPods
/ios/Pods/
/vendor/bundle/
7 changes: 7 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
arrowParens: 'avoid',
bracketSameLine: true,
bracketSpacing: false,
singleQuote: true,
trailingComma: 'all',
};
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.7.5
23 changes: 2 additions & 21 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,3 @@
{
"liveServer.settings.root": "./Android/app/src/main/assets",
"files.exclude": {
"**/.gradle": true,
"**/.idea": true,
"Android/app/.cxx": true,
"Android/app/build": true,
"Android/app/proguard-rules.pro": true,
"Android/app/release": true,
"Android/build": true,
"Android/gradle": true,
"Android/gradlew": true,
"Android/gradlew.bat": true,
"Android/local.properties": true,
"Website/node_modules": true,
"Website/package-lock.json": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[python]": {
"editor.defaultFormatter": "ms-python.python"
}
}
"java.configuration.updateBuildConfiguration": "interactive"
}
1 change: 1 addition & 0 deletions .watchmanconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
40 changes: 0 additions & 40 deletions Android/.gitignore

This file was deleted.

50 changes: 0 additions & 50 deletions Android/app/build.gradle

This file was deleted.

20 changes: 0 additions & 20 deletions Android/app/release/output-metadata.json

This file was deleted.

Loading

0 comments on commit 06fd676

Please sign in to comment.