Init with create-react-app

This commit is contained in:
2018-04-11 11:24:07 +05:30
commit 911082b42d
15 changed files with 10343 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"extends": "airbnb",
"env": {
"browser": true,
"jest": true
},
"rules": {
"import/prefer-default-export": "off",
"linebreak-style": "off",
"indent": [
"error",
2
],
"arrow-body-style": [
"error",
"always"
],
"react/jsx-boolean-value": "off",
"react/sort-comp": "off",
"jsx-a11y/interactive-supports-focus": "off"
}
}