Skip to content

Commit a54540e

Browse files
Merge pull request #39 from team-reactype/development
Stable MVP version
2 parents 623c555 + 1eec993 commit a54540e

Some content is hidden

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

73 files changed

+32381
-23
lines changed

.babelrc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"presets": [
3+
[
4+
"env",
5+
{
6+
"modules": false
7+
}
8+
],
9+
"react",
10+
"stage-0"
11+
// "@babel/preset-typescript"
12+
],
13+
"plugins": ["transform-es2015-modules-commonjs"]
14+
}

.eslintrc.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"extends": ["plugin:react/recommended", "airbnb-base"],
3+
"parserOptions": {
4+
"ecmaFeatures": {
5+
"jsx": true
6+
},
7+
"ecmaVersion": 2018,
8+
"sourceType": "module"
9+
},
10+
"plugins": ["import", "react", "jest", "jsx-a11y", "babel"],
11+
"parser": "babel-eslint",
12+
"env": {
13+
"browser": true,
14+
"node": true,
15+
"es6": true,
16+
"jest": true
17+
},
18+
"rules": {
19+
"class-methods-use-this": "off",
20+
"linebreak-style": 0
21+
}
22+
}

0 commit comments

Comments
 (0)