Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[*.{sh,markdown}]
indent_size = 4

[*.md]
max_line_length = 0
trim_trailing_whitespace = false
4 changes: 0 additions & 4 deletions .eslintrc.js

This file was deleted.

4 changes: 3 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
*.pbxproj -text
*.pbxproj -text
# specific for windows script files
*.bat text eol=crlf
193 changes: 83 additions & 110 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,111 +1,59 @@

# OSX
#
#######################################################
.DS_Store

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


# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.pbxuser
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.mode1v3
*.mode2v3
*.moved-aside
*.pbxuser
*.perspectivev3
*.xccheckout
*.xcodeproj/*
*.xcscmblueprint
*.xcuserstate
project.xcworkspace

android/.settings/
**/xcshareddata/WorkspaceSettings.xcsettings
/*.gcno
build/
DerivedData
ios/.xcode.env.local
project.xcworkspace
xcuserdata

# Android/IntelliJ
#
.idea
.gradle
local.properties
*.iml
*.hprof
.cxx/
*.keystore
*.jks
!debug.keystore
#######################################################
.classpath
.cxx
.externalNativeBuild
.gradle
.idea
.navigation/
.project
.settings
*.hprof
*.iml
*.jks
/android/gradle/
/android/gradlew
/android/gradlew.bat
android.iml
.navigation/
android/.settings/
build/
captures/
.externalNativeBuild

# 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
**/fastlane/readme.md

# Bundle artifact
*.jsbundle

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*

# XDE
.expo/

# VSCode
.vscode/
jsconfig.json

# Cocoapods
#
example/ios/Pods
/ios/Pods/

# Ruby
example/vendor/
/vendor/bundle/

# BUCK
buck-out/
\.buckd/
android/app/libs
android/keystores/debug.keystore

# Expo
.expo/*

# generated by bob
lib/

# Created by https://www.gitignore.io/api/android
# Edit at https://www.gitignore.io/?templates=android
gen-external-apklibs
local.properties
output.json

### Android ###
# Built application files
*.apk
*.ap_
Expand Down Expand Up @@ -147,35 +95,60 @@ lint/outputs/
lint/tmp/
lint/reports/

### Android Patch ###
gen-external-apklibs
output.json
# node.js
#######################################################
coverage/
node_modules/
npm-debug.log
yarn-debug.log
yarn-error.log

# Created by https://www.gitignore.io/api/xcode
# Edit at https://www.gitignore.io/?templates=xcode
# BUCK
#######################################################
!debug.keystore
*.keystore
\.buckd/
buck-out/

### Xcode ###
# Xcode
# 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/
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
#######################################################
*/fastlane/report.xml
*/fastlane/Preview.html
*/fastlane/screenshots
**/fastlane/test_output
**/fastlane/readme.md

## User settings
xcuserdata/
# Bundle artifact
#######################################################
*.jsbundle

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
# Temporary files created by Metro to check the health of the file watcher
#
.metro-health-check*

# XDE
#
.expo/

## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
DerivedData/
# VSCode
#
.vscode/
jsconfig.json

## Xcode Patch
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata
/*.gcno
# Cocoapods
#
example/ios/Pods
/ios/Pods/

### Xcode Patch ###
**/xcshareddata/WorkspaceSettings.xcsettings
# Ruby
example/vendor/
/vendor/bundle/

# End of https://www.gitignore.io/api/xcode
# Library
lib/
6 changes: 0 additions & 6 deletions .prettierrc.js

This file was deleted.

3 changes: 3 additions & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Override Yarn command so we can automatically setup the repo on running `yarn`

yarn-path "scripts/bootstrap.js"
Loading