Skip to content

Commit 251e526

Browse files
author
Emiliano Botti
committed
Version 2.0.0 πŸš€
0 parents  commit 251e526

File tree

142 files changed

+16200
-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.

142 files changed

+16200
-0
lines changed

β€Ž.all-contributorsrc

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"files": [
3+
"README.md"
4+
],
5+
"imageSize": 100,
6+
"commit": false,
7+
"contributors": [
8+
{
9+
"login": "eb16",
10+
"name": "Emiliano Botti",
11+
"avatar_url": "https://avatars0.githubusercontent.com/u/20881388?v=4",
12+
"profile": "https://github.com/eb16",
13+
"contributions": [
14+
"code"
15+
]
16+
},
17+
{
18+
"login": "Joaguirrem",
19+
"name": "JoaquΓ­n Aguirre",
20+
"avatar_url": "https://avatars2.githubusercontent.com/u/17858453?v=4",
21+
"profile": "https://github.com/Joaguirrem",
22+
"contributions": [
23+
"code"
24+
]
25+
},
26+
{
27+
"login": "santiagofm",
28+
"name": "Santiago FernΓ‘ndez",
29+
"avatar_url": "https://avatars0.githubusercontent.com/u/6749415?v=4",
30+
"profile": "https://github.com/santiagofm",
31+
"contributions": [
32+
"code",
33+
"projectManagement",
34+
"review"
35+
]
36+
},
37+
{
38+
"login": "matir91",
39+
"name": "MatΓ­as Irland",
40+
"avatar_url": "https://avatars2.githubusercontent.com/u/8472881?v=4",
41+
"profile": "https://github.com/matir91",
42+
"contributions": [
43+
"review"
44+
]
45+
}
46+
],
47+
"contributorsPerLine": 7,
48+
"projectName": "react-native-line",
49+
"projectOwner": "eb16",
50+
"repoType": "github",
51+
"repoHost": "https://github.com",
52+
"skipCi": true
53+
}

β€Ž.babelrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"presets": ["module:metro-react-native-babel-preset"],
3+
"plugins": [
4+
[
5+
"module-resolver",
6+
{
7+
"root": ["."],
8+
"extensions": [".js", ".jsx", ".ts", ".tsx"]
9+
}
10+
]
11+
]
12+
}

β€Ž.buckconfig

+6
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

β€Ž.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.babelrc

β€Ž.eslintrc.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = {
2+
root: true,
3+
extends: 'eslint:recommended',
4+
plugins: ['react-hooks'],
5+
rules: {
6+
'react-hooks/rules-of-hooks': 'error',
7+
'react-hooks/exhaustive-deps': 'warn',
8+
},
9+
}

β€Ž.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.pbxproj -text

β€Ž.github/pull_request_template.md

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
## PR Title
2+
3+
4+
#### :link: Trello board reference:
5+
6+
- [Title of the card](https://link-to-trello-card)
7+
8+
---
9+
10+
#### πŸ”„ Type of change:
11+
12+
- [ ] ✨Feature/chore
13+
- [ ] :recycle: Refactor
14+
- [ ] :wrench: Bugfixes
15+
16+
---
17+
18+
#### :pencil2: Description:
19+
20+
Add a description of the feature or bug you are tackling. First in high level perspective and then you can describe your solution. Include acceptance criteria, diagrams of the code, or anything else you consider that might help other developers understand your decisions.
21+
22+
---
23+
24+
#### :movie_camera: Screen record:
25+
26+
Add a screen record of the execution of your functionality. This way the reviewer can better understand what has been added.
27+
28+
<p align="center">
29+
<img src="https://link-to-image" width="300">
30+
</p>
31+
32+
---
33+
34+
#### :pushpin: Notes:
35+
36+
- Include pending tasks, TODOs, assumptions, or comments like 'Needs migrating', or 'Requires ENV vars: [..]'
37+
38+
---
39+
40+
#### :heavy_check_mark:Tasks:
41+
42+
- Include a medium-level tasking that summarizes the changes in the code
43+
44+
---
45+
46+
#### :warning: Warnings:
47+
48+
- Include a list of considerations for reviewers or future developers. For example:
49+
- The feature in production triggers a service call so it will charge the account credit card
50+
- The service X is mocked so this part is not tested
51+
52+
---

β€Ž.gitignore

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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+
android/gradle
33+
android/gradlew
34+
android/gradlew.bat
35+
36+
# Visual Studio Code
37+
#
38+
.vscode/
39+
40+
# node.js
41+
#
42+
node_modules/
43+
npm-debug.log
44+
yarn-error.log
45+
46+
# BUCK
47+
buck-out/
48+
\.buckd/
49+
*.keystore
50+
!debug.keystore
51+
52+
# fastlane
53+
#
54+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
55+
# screenshots whenever they are needed.
56+
# For more information about the recommended setup visit:
57+
# https://docs.fastlane.tools/best-practices/source-control/
58+
59+
*/fastlane/report.xml
60+
*/fastlane/Preview.html
61+
*/fastlane/screenshots
62+
63+
# Bundle artifact
64+
*.jsbundle
65+
66+
# CocoaPods
67+
/ios/Pods/
68+
/example/ios/Pods/

β€Ž.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
example/
2+
.babelrc

β€Ž.npmrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@eb16:registry=https://npm.pkg.github.com
2+
registry=https://registry.yarnpkg.com
3+
//npm.pkg.github.com/:_authToken=${GITHUB_NPM_TOKEN}

β€Ž.prettierrc.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
bracketSpacing: true,
3+
jsxBracketSameLine: true,
4+
singleQuote: true,
5+
trailingComma: 'all',
6+
semi: false,
7+
}

β€ŽLICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 XmartLabs S.R.L.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
Β (0)