This commit is contained in:
Alexey Kasyanchuk
2018-06-17 13:35:07 +03:00
parent f09c6ab43f
commit 93b1b91f56
4 changed files with 599 additions and 0 deletions

16
.eslintrc.json Normal file
View File

@ -0,0 +1,16 @@
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react"
],
"rules": {
"indent": ["error", "tab"]
}
}