Skip to content

Commit 5cf1b26

Browse files
authored
Merge pull request #8 from codingandfitness/migration
Migration
2 parents c4dec9a + a948749 commit 5cf1b26

Some content is hidden

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

69 files changed

+9746
-6807
lines changed

.babelrc

Lines changed: 0 additions & 18 deletions
This file was deleted.

.buckconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
[android]
3+
target = Google Inc.:Google APIs:23
4+
5+
[maven_repositories]
6+
central = https://repo1.maven.org/maven2

.eslintrc

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"extends": [
3-
"airbnb",
43
"prettier",
54
"prettier/flowtype",
65
"prettier/react",
7-
"prettier/standard"
6+
"prettier/standard",
7+
"airbnb-base"
88
],
9-
"parser": "babel-eslint",
9+
"plugins": ["prettier"],
1010
"ecmaFeatures": {
1111
"classes": true
1212
},
@@ -19,10 +19,8 @@
1919
"import/extensions": [".js"]
2020
},
2121
"rules": {
22-
"react/jsx-filename-extension": [
23-
"error",
24-
{ "extensions": [".js", ".jsx"] }
25-
],
22+
"prettier/prettier": "error",
23+
"react/jsx-filename-extension": "off",
2624
"global-require": "off",
2725
"no-console": "off",
2826
"import/no-extraneous-dependencies": "off",
@@ -34,6 +32,11 @@
3432
"no-nested-ternary": "off",
3533
"react/no-multi-comp": "off",
3634
"linebreak-style": "off",
37-
"react/prefer-stateless-function": "off"
35+
"react/prefer-stateless-function": "off",
36+
"comma-dangle": "off",
37+
"operator-linebreak": "off",
38+
"func-names": "off",
39+
"import/no-named-as-default": "off",
40+
"import/no-named-as-default-member": "off"
3841
}
3942
}

.expo/packager-info.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2+
"devToolsPort": 19002,
23
"expoServerPort": null,
34
"packagerPort": null,
45
"packagerPid": null,
56
"expoServerNgrokUrl": null,
67
"packagerNgrokUrl": null,
78
"ngrokPid": null,
8-
"devToolsPort": 19002
9-
}
9+
"webpackServerPort": null
10+
}

.expo/settings.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"hostType": "lan",
33
"lanType": "ip",
44
"dev": true,
5-
"strict": false,
65
"minify": false,
7-
"urlType": "exp",
8-
"urlRandomness": "uk-m3b"
9-
}
6+
"urlRandomness": "qe-af6",
7+
"https": false
8+
}

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.pbxproj -text

.gitignore

Lines changed: 62 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,63 @@
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+
project.xcworkspace
24+
25+
# Android/IntelliJ
26+
#
27+
build/
28+
.idea
29+
.gradle
30+
local.properties
31+
*.iml
32+
33+
# node.js
34+
#
135
node_modules/
2-
.idea/
3-
npm-debug.*
4-
.DS_Store
36+
npm-debug.log
37+
yarn-error.log
38+
39+
# BUCK
40+
buck-out/
41+
\.buckd/
42+
*.keystore
43+
44+
# fastlane
45+
#
46+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47+
# screenshots whenever they are needed.
48+
# For more information about the recommended setup visit:
49+
# https://docs.fastlane.tools/best-practices/source-control/
50+
51+
*/fastlane/report.xml
52+
*/fastlane/Preview.html
53+
*/fastlane/screenshots
54+
55+
# Bundle artifacts
56+
*.jsbundle
57+
58+
# CocoaPods
59+
/ios/Pods/
60+
61+
# Expo
62+
.expo/*
63+
/web-build

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
package.json
2+
package-lock.json
3+
.vscode/*

.prettierrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"bracketSpacing": true,
3+
"semi": true,
4+
"singleQuote": true,
5+
"trailingComma": "es5",
6+
"printWidth": 80,
7+
"tabWidth": 2
8+
}

.vscode/settings.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
{
22
"editor.formatOnSave": true,
3-
"javascript.format.enable": false,
4-
"prettier.eslintIntegration": true,
53
"path-intellisense.mappings": {
64
"@app": "${workspaceRoot}/src/app",
75
"@assets": "${workspaceRoot}/src/assets",
86
"@common": "${workspaceRoot}/src/common",
97
"@components": "${workspaceRoot}/src/components",
108
"@constants": "${workspaceRoot}/src/constants"
11-
},
12-
"typescript.quickSuggestionsForPaths": false
9+
}
1310
}

0 commit comments

Comments
 (0)