Skip to content

Commit e0b6343

Browse files
author
hselto
committed
react app bit
1 parent 554076f commit e0b6343

File tree

12 files changed

+8622
-3
lines changed

12 files changed

+8622
-3
lines changed

.babelrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"presets": ["@babel/env", "@babel/preset-react"],
3+
"plugins": ["@babel/plugin-proposal-class-properties"]
4+
}

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist

.eslintrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extends": "airbnb",
3+
"plugins": [
4+
"react",
5+
"jsx-a11y",
6+
"import"
7+
],
8+
"rules": {
9+
"react/jsx-curly-newline": 0,
10+
"react/prefer-stateless-function": 0,
11+
}
12+
}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

0 commit comments

Comments
 (0)