Skip to content

Commit 6a5995d

Browse files
Merge pull request hyva-themes#247 from hyva-themes/1.0.2-rc
1.0.2 rc
2 parents 40da635 + 4757fc7 commit 6a5995d

File tree

13 files changed

+19999
-7705
lines changed

13 files changed

+19999
-7705
lines changed

Diff for: .gitignore

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

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A Highly Customizable Checkout for Magento 2, Built with React.
44

5-
# [![Hyvä Themes](./images/logo-hyva.svg)](https://hyva.io/)
5+
# [![Hyvä Themes](https://github.com/hyva-themes/magento2-react-checkout/blob/documentation/docs/images/logo-hyva.svg)](https://hyva.io/)
66

77
## hyva-themes/magento2-react-checkout
88

@@ -38,7 +38,7 @@ If you want to install the checkout as a demo or just try it out, install it dir
3838
```
3939
composer require hyva-themes/magento2-react-checkout
4040
```
41-
41+
4242
Via Github:
4343
```
4444
composer config repositories.hyva-themes/magento2-react-checkout git [email protected]:hyva-themes/magento2-react-checkout.git
@@ -48,7 +48,7 @@ If you want to install the checkout as a demo or just try it out, install it dir
4848
```
4949
bin/magento setup:upgrade
5050
```
51-
51+
5252
To fully customize the checkout to your needs, either clone this repo, or use https://github.com/hyva-themes/magento2-checkout-example.
5353
5454
Read the full documentation here: https://hyva-themes.github.io/magento2-react-checkout/
@@ -65,7 +65,7 @@ The configuration path is `hyva_react_checkout/general/enable`
6565
6666
This Checkout has been built in corporation - and with the support of - our main partner, integer_net.
6767
68-
# [![integer_net GmbH](./images/logo-integernet.png)](https://integer-net.de)
68+
# [![integer_net GmbH](https://github.com/hyva-themes/magento2-react-checkout/blob/documentation/docs/images/logo-integernet.png)](https://integer-net.de)
6969
7070
In particular, [Rajeev K Tomy][link-author] has been a monumental in the development of this Checkout.
7171

Diff for: images/logo-hyva.svg

-19
This file was deleted.

Diff for: images/logo-integernet.png

-5.71 KB
Binary file not shown.

Diff for: src/reactapp/.eslintrc.js

+30-21
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,33 @@
11
module.exports = {
2-
extends: ['react-app', 'plugin:prettier/recommended'],
3-
overrides: [
4-
{
5-
files: ["**/*.js?(x)"],
6-
rules: {
7-
'arrow-body-style': [2, 'as-needed'],
8-
'import/prefer-default-export': 0,
9-
'no-underscore-dangle': 0,
10-
'react/jsx-props-no-spreading': 0,
11-
'no-console': ['error', { allow: ['warn', 'error'] }],
12-
'react/forbid-prop-types': [
13-
'error',
14-
{
15-
forbid: ['any', 'array'],
16-
checkContextTypes: true,
17-
checkChildContextTypes: true,
18-
},
19-
],
20-
'react/no-danger': 0,
2+
parser: '@babel/eslint-parser',
3+
extends: ['airbnb', 'plugin:prettier/recommended'],
4+
env: {
5+
es6: true,
6+
node: true,
7+
jest: true,
8+
browser: true,
9+
},
10+
parserOptions: {
11+
ecmaVersion: 6,
12+
sourceType: 'module',
13+
ecmaFeatures: {
14+
jsx: true,
15+
},
16+
},
17+
rules: {
18+
'arrow-body-style': [2, 'as-needed'],
19+
'import/prefer-default-export': 0,
20+
'no-underscore-dangle': 0,
21+
'react/jsx-props-no-spreading': 0,
22+
'no-console': ['error', { allow: ['warn', 'error'] }],
23+
'react/forbid-prop-types': [
24+
'error',
25+
{
26+
forbid: ['any', 'array'],
27+
checkContextTypes: true,
28+
checkChildContextTypes: true,
2129
},
22-
}
23-
]
30+
],
31+
'react/no-danger': 0,
32+
},
2433
};

0 commit comments

Comments
 (0)